Skip to content
This repository has been archived by the owner on Jun 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #414 from adamralph/fix-build
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
adamralph committed Dec 10, 2017
2 parents 15cd705 + 1b3b7f6 commit c232679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.csx
Expand Up @@ -17,7 +17,7 @@ targets.Add(
DependsOn("build"),
() =>
{
var versionSuffix = Environment.GetEnvironmentVariable("VERSION_SUFFIX") ?? "-adhoc";
var versionSuffix = Environment.GetEnvironmentVariable("VERSION_SUFFIX") ?? "";
var buildNumber = Environment.GetEnvironmentVariable("BUILD_NUMBER") ?? "000000";
var buildNumberSuffix = versionSuffix == "" ? "" : "-build" + buildNumber;
var version = File.ReadAllText("src/Directory.Build.props")
Expand Down

0 comments on commit c232679

Please sign in to comment.