We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbdc128 commit b297695Copy full SHA for b297695
ci/azure/windows_upload
@@ -25,6 +25,9 @@ if [ "${BUILD_REASON}" != "PullRequest" ]; then
25
26
SHASUM=$(sha256sum $TARBALL | cut '-d ' -f1)
27
BYTESIZE=$(wc -c < $TARBALL)
28
+ # `set -x` causes these variables to be mangled.
29
+ # See https://developercommunity.visualstudio.com/content/problem/375679/pipeline-variable-incorrectly-inserts-single-quote.html
30
+ set +x
31
echo "##vso[task.setvariable variable=tarball;isOutput=true]$TARBALL"
32
echo "##vso[task.setvariable variable=shasum;isOutput=true]$SHASUM"
33
echo "##vso[task.setvariable variable=bytesize;isOutput=true]$BYTESIZE"
0 commit comments