From fb0bbd98320772a49fa0dcbbd7095fbf94b2e91e Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 1 Aug 2018 18:52:27 -0700 Subject: [PATCH] Fix wrong VSTS variable name --- script/vsts/get-release-version.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/vsts/get-release-version.js b/script/vsts/get-release-version.js index 0a0ee4ba7..4d38bc7c0 100644 --- a/script/vsts/get-release-version.js +++ b/script/vsts/get-release-version.js @@ -48,7 +48,7 @@ async function getReleaseVersion () { buildBranch.startsWith('electron-') || buildBranch === 'master' && !process.env.SYSTEM_PULLREQUEST_PULLREQUESTNUMBER console.log(`##vso[task.setvariable variable=IsReleaseBranch;isOutput=true]${isReleaseBranch}`) - console.log(`##vso[task.setvariable variable=IsSignedBuildBranch;isOutput=true]${isSignedZipBranch}`) + console.log(`##vso[task.setvariable variable=IsSignedZipBranch;isOutput=true]${isSignedZipBranch}`) } getReleaseVersion()