From d8da9a01fcfebf14a9f262cabf36f1c0767d2e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Z=C3=BA=C3=B1iga?= Date: Sun, 20 Feb 2022 19:58:53 -0500 Subject: [PATCH] Use lowercase in shasum for windows builds --- ci/azure/pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/azure/pipelines.yml b/ci/azure/pipelines.yml index 66c412f1e4..b93d057e6a 100644 --- a/ci/azure/pipelines.yml +++ b/ci/azure/pipelines.yml @@ -137,7 +137,7 @@ jobs: --acl public-read ` --cache-control 'public, max-age=31536000, immutable' - Set-Variable -Name SHASUM -Value (Get-FileHash "$TARBALL" -Algorithm SHA256 | select-object -ExpandProperty Hash) + Set-Variable -Name SHASUM -Value (Get-FileHash "$TARBALL" -Algorithm SHA256 | select-object -ExpandProperty Hash).ToLower() Set-Variable -Name BYTESIZE -Value (Get-Item "$TARBALL").length Set-Variable -Name JSONFILE -Value "windows-${Env:BUILD_SOURCEBRANCHNAME}.json"