Skip to content

Commit

Permalink
Fix typo around sha256sum
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenkumar committed Dec 2, 2024
1 parent db7a2d6 commit b0d8ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
URL="https://developers.redhat.com/content-gateway/file/pub/openshift-v4/clients/crc/latest/crc-linux-${TS_ARCH}.tar.xz"
echo "Downloading $URL"
curl -H user-agent:crc--github-action -L "$URL" -o crc-linux.tar.xz --max-time 300 --fail
SHA256SUM="$(curl -H user-agent:crc-github-action -L "${URL}.sha256" --fail)"
SHA256SUM="$(curl -H user-agent:crc-github-action -L ${URL}.sha256 --fail)"
echo "Expected sha256: $SHA256SUM"
echo "Actual sha256: $(sha256sum crc-linux.tar.xz)"
echo "$SHA256SUM crc-linux.tar.xz" | sha256sum -c
Expand Down

0 comments on commit b0d8ff0

Please sign in to comment.