Skip to content

Commit 23412a3

Browse files
committed
Fix quoting
1 parent fd32e89 commit 23412a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@ CmakeGenerate() {
8181

8282
if [ -n "$ENABLE_USERAPPS" ]
8383
then
84-
CMAKE_ARGS=-DENABLE_USERAPPS=$ENABLE_USERAPPS
84+
CMAKE_ARGS="-DENABLE_USERAPPS=$ENABLE_USERAPPS"
8585
fi
8686

8787
if [ -n "$ENABLE_WATCHFACES" ]
8888
then
89-
CMAKE_ARGS=${CMAKE_ARGS} -DENABLE_WATCHFACES=$ENABLE_WATCHFACES
89+
CMAKE_ARGS="${CMAKE_ARGS} -DENABLE_WATCHFACES=$ENABLE_WATCHFACES"
9090
fi
9191

9292
cmake -G "Unix Makefiles" \

0 commit comments

Comments
 (0)