diff --git a/build/Program.cs b/build/Program.cs index c1d38e242..47dafb6f9 100644 --- a/build/Program.cs +++ b/build/Program.cs @@ -98,7 +98,7 @@ namespace ConsoleApplication var prNumber = Environment.GetEnvironmentVariable("APPVEYOR_PULL_REQUEST_NUMBER"); if (!string.IsNullOrWhiteSpace(prNumber)) { - branch = $"PR{int.Parse(prNumber):0000}"; + branch = $"PR{int.Parse(prNumber):000}"; } // this will happen when checking out a comit directly and not a branch (like appveryor does when it builds)