Skip to content

Commit

Permalink
CI script typo kept mac from recognizing ARCH properly
Browse files Browse the repository at this point in the history
Signed-off-by: Larry Gritz <[email protected]>
  • Loading branch information
lgritz committed May 9, 2021
1 parent 0befcc5 commit 4b0b8e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/build-scripts/ci-startup.bash
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# with 'source', not in a separate shell.

# Figure out the platform
if [[ $$RUNNER_OS == macOS ]] ; then
if [[ $RUNNER_OS == macOS ]] ; then
export ARCH=macosx
elif [[ $RUNNER_OS == Linux ]] ; then
export ARCH=linux64
Expand All @@ -19,6 +19,7 @@ elif [[ `uname -m` == aarch64 ]] ; then
export ARCH=aarch64
else
export ARCH=unknown
exit -1
fi
export PLATFORM=$ARCH

Expand Down

0 comments on commit 4b0b8e2

Please sign in to comment.