Skip to content

Commit

Permalink
Remove double-quotes around variables to fix incorrect array expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
hisaac committed Nov 9, 2023
1 parent 1af3acd commit 5ce8acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ xc() {
# Logs xcodebuild output in realtime
: "${NSUnbufferedIO:=YES}"
if [[ "$XCMODE" == "xcodebuild" ]]; then
xcode "$@" "${REALM_EXTRA_BUILD_ARGUMENTS[@]}"
xcode "$@" ${REALM_EXTRA_BUILD_ARGUMENTS[@]}
elif [[ "$XCMODE" == "xctool" ]]; then
xctool "$@" "${REALM_EXTRA_BUILD_ARGUMENTS[@]}"
fi
Expand Down

0 comments on commit 5ce8acf

Please sign in to comment.