Fix wrong VSTS variable name

This commit is contained in:
David Wilson
2018-08-01 18:52:27 -07:00
parent be99688094
commit fb0bbd9832

View File

@@ -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()