Skip to content

Commit 4b0b8e2

Browse files
committed
CI script typo kept mac from recognizing ARCH properly
Signed-off-by: Larry Gritz <[email protected]>
1 parent 0befcc5 commit 4b0b8e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/build-scripts/ci-startup.bash

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# with 'source', not in a separate shell.
1010

1111
# Figure out the platform
12-
if [[ $$RUNNER_OS == macOS ]] ; then
12+
if [[ $RUNNER_OS == macOS ]] ; then
1313
export ARCH=macosx
1414
elif [[ $RUNNER_OS == Linux ]] ; then
1515
export ARCH=linux64
@@ -19,6 +19,7 @@ elif [[ `uname -m` == aarch64 ]] ; then
1919
export ARCH=aarch64
2020
else
2121
export ARCH=unknown
22+
exit -1
2223
fi
2324
export PLATFORM=$ARCH
2425

0 commit comments

Comments
 (0)