Remove FLOWID for Linux
This commit is contained in:
parent
a747c4e95f
commit
8c0f9c8482
|
|
@ -173,14 +173,7 @@ var buildTarget = "compile"
|
||||||
if (!string.IsNullOrEmpty(ciVolatileShare))
|
if (!string.IsNullOrEmpty(ciVolatileShare))
|
||||||
{
|
{
|
||||||
Log.Info("Publishing packages to " + ciVolatileShare);
|
Log.Info("Publishing packages to " + ciVolatileShare);
|
||||||
if (string.IsNullOrEmpty(nugetExe))
|
NuGetPackagesAdd(repoBuild, ciVolatileShare);
|
||||||
{
|
|
||||||
Log.Warn("PUSH_NUGET_EXE not specified.");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
NuGetPackagesAdd(repoBuild, ciVolatileShare);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1041,11 +1034,7 @@ functions
|
||||||
string output;
|
string output;
|
||||||
if (IsLinux)
|
if (IsLinux)
|
||||||
{
|
{
|
||||||
output = Path.Combine(repo, "build-with-flow-id.sh");
|
output = Path.Combine(repo, "build.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), "");
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue