Skip to content

Commit a2e5797

Browse files
committed
a different way of checking for macos
1 parent dd28c2c commit a2e5797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/index.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ $? -ne 0 ]; then
66
fi
77

88
tar_options="--wildcards --ignore-case"
9-
if [[ "$OSTYPE" == "darwin"* ]]; then
9+
if [ "$(uname)" == "Darwin" ]; then
1010
tar_options=""
1111
fi
1212

0 commit comments

Comments
 (0)