From 0f2fccce264ea0a119a6a363ed9414be9ea831fd Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Sun, 1 Jan 2017 12:31:33 +0000 Subject: [PATCH] reduce padding on pr tag to fit with alphaX pretag --- build/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)