Skip to content

Commit

Permalink
Try to handle posix-isms in run.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Pat-Lafon committed Jun 29, 2023
1 parent 0ba6fbd commit a2889d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brilift/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -e
#

OS=$(uname -m)
if [[ "$OS" == 'arm64' ]]; then
if [ "$OS" = 'arm64' ]; then
export TARGET=x86_64-unknown-darwin-macho
fi

Expand Down

0 comments on commit a2889d2

Please sign in to comment.