From 2a2de46384cee162ba6e0aeb268858bc1fbc49c3 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Wed, 3 Oct 2018 20:41:39 +0100 Subject: [PATCH] fix build number --- parameters.cake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parameters.cake b/parameters.cake index 1dd1b85375..1ebc599ce5 100644 --- a/parameters.cake +++ b/parameters.cake @@ -21,7 +21,7 @@ public class Parameters VersionSuffix = context.Argument("suffix", default(string)); if (VersionSuffix == null) { - var build = context.EnvironmentVariable("APPVEYOR_BUILD_VERSION"); + var build = context.EnvironmentVariable("AZURE_BUILD_VERSION"); VersionSuffix = build != null ? $"-build{build}" : ""; }