Skip to content

Commit

Permalink
[Build script] Remove double-quotes around variables to fix incorrect…
Browse files Browse the repository at this point in the history
… array expansion (#8413)

* Remove double-quotes around variables to fix incorrect array expansion

* Update CHANGELOG.md

---------

Co-authored-by: Yavor Georgiev <[email protected]>
  • Loading branch information
hisaac and fealebenpae authored Feb 29, 2024
1 parent aea16af commit a561458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ x.y.z Release notes (yyyy-MM-dd)

### Fixed
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-swift/issues/????), since v?.?.?)
* None.
* Fix multiple arguments support via the `REALM_EXTRA_BUILD_ARGUMENTS` environment variable in `build.sh`. ([PR #8413](https://github.com/realm/realm-swift/pulls/8413)). Thanks, [@hisaac](https://github.com/hisaac)!

<!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ xcode() {
xc() {
# Logs xcodebuild output in realtime
: "${NSUnbufferedIO:=YES}"
xcode "$@" "${REALM_EXTRA_BUILD_ARGUMENTS[@]}"
xcode "$@" ${REALM_EXTRA_BUILD_ARGUMENTS[@]}
}

xctest() {
Expand Down

0 comments on commit a561458

Please sign in to comment.