Skip to content

Commit

Permalink
Merge pull request #120 from marcransome/slsa-provenance-combined-has…
Browse files Browse the repository at this point in the history
…hes-fix

Fix machine hardware name comparison logic
  • Loading branch information
marcransome authored Mar 23, 2024
2 parents 2edfb89 + 9293706 commit 8c043d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/slsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Get machine hardware name
run: |
arch=$(uname -m)
if [[ "${arch}" != "x86_64" || "${arch}" != "arm64" ]]; then
if [[ "${arch}" != "x86_64" && "${arch}" != "arm64" ]]; then
echo "Unexpected machine hardware name: ${arch}"
exit 1
fi
Expand Down

0 comments on commit 8c043d1

Please sign in to comment.