Skip to content

Commit

Permalink
fixup! feat: use Sha256 instead of Sha1
Browse files Browse the repository at this point in the history
fix sysroot-creator.sh too
  • Loading branch information
ckerr committed May 29, 2024
1 parent fb82cfd commit f2a0097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/linux/sysroot_scripts/sysroot-creator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ BuildSysroot() {
}

UploadSysroot() {
local sha=$(sha1sum "${TARBALL}" | awk '{print $1;}')
local sha=$(sha256sum "${TARBALL}" | awk '{print $1;}')
local tarball_name="$(basename "${TARBALL}")"
set -x
az storage blob upload -f "${TARBALL}" -c linux-sysroots -n $sha/"${tarball_name}"
Expand Down

0 comments on commit f2a0097

Please sign in to comment.