Remove FLOWID for Linux
This commit is contained in:
parent
a747c4e95f
commit
8c0f9c8482
|
|
@ -173,14 +173,7 @@ var buildTarget = "compile"
|
|||
if (!string.IsNullOrEmpty(ciVolatileShare))
|
||||
{
|
||||
Log.Info("Publishing packages to " + ciVolatileShare);
|
||||
if (string.IsNullOrEmpty(nugetExe))
|
||||
{
|
||||
Log.Warn("PUSH_NUGET_EXE not specified.");
|
||||
}
|
||||
else
|
||||
{
|
||||
NuGetPackagesAdd(repoBuild, ciVolatileShare);
|
||||
}
|
||||
NuGetPackagesAdd(repoBuild, ciVolatileShare);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1041,11 +1034,7 @@ functions
|
|||
string output;
|
||||
if (IsLinux)
|
||||
{
|
||||
output = Path.Combine(repo, "build-with-flow-id.sh");
|
||||
File.WriteAllText(
|
||||
output,
|
||||
string.Format("export KOREBUILD_FLOWID=KOREBUILD_{0}\nbuild.sh \"$@\"", repo));
|
||||
Exec("chmod", string.Format("--reference={0} {1}", Path.Combine(repo, "build.sh"), output), "");
|
||||
output = Path.Combine(repo, "build.sh");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue