Skip to content

Commit

Permalink
Use correct equality.
Browse files Browse the repository at this point in the history
  • Loading branch information
csasarak committed May 13, 2024
1 parent 3287e73 commit f57770f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:
# On Apple Silicon there doesn't seem to be a default liblzma, and the one installed via homebrew is rejected.
# The entitlement line will relax that check.
# The hardened runtime is required for notarization.
if [ "$OS_NAME" -eq "macOS-arm64" ] ; then
if [ "$OS_NAME" = "macOS-arm64" ] ; then
codesign --entitlements .github/entitlements.plist --options runtime -s 'FOSSA, Inc.' release/fossa
else
# Intel does not need the entitlement to run liblzma, which is included in the base system.
Expand Down

0 comments on commit f57770f

Please sign in to comment.