Skip to content

Commit a02fc3a

Browse files
authored
Fix arch test in ./tester.sh (#1214)
Finally a solution that works both on zsh on macos and bash on linux Change: fix-arch-finally
1 parent 8a764ad commit a02fc3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tester.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fi
2424

2525
ARCH=$(arch)
2626

27-
if [ ARCH == "arm64" ]; then
27+
if [ "$ARCH" = "arm64" ]; then
2828
ARCH="aarch64"
2929
fi
3030

0 commit comments

Comments
 (0)