Skip to content

Commit

Permalink
chore: properly error when binaries cannot be fetched
Browse files Browse the repository at this point in the history
  • Loading branch information
TimBeyer committed Sep 11, 2023
1 parent 9d30746 commit 2e504da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-create-homebrew-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
set -o pipefail
checksum=$(curl -sSL --fail ${{ env.ARM_TARBALL_URL }}/error | shasum -a 256 | cut -d ' ' -f 1)
checksum=$(curl -sSL --fail ${{ env.ARM_TARBALL_URL }} | shasum -a 256 | cut -d ' ' -f 1)
if [[ $? -ne 0 ]]; then
echo "Failed to fetch binary from ${{ env.ARM_TARBALL_URL }}"
Expand Down

0 comments on commit 2e504da

Please sign in to comment.