Browse Source

Protecting arguments to build.sh from automatic splitting.

David Piuva 5 years ago
parent
commit
6730ac358b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/tools/buildAndRun.sh

+ 1 - 1
Source/tools/buildAndRun.sh

@@ -15,7 +15,7 @@ LINKER_FLAGS=$9 # Additional linker flags for libraries and such
 chmod +x ${ROOT_PATH}/tools/build.sh
 
 # Compile and link
-${ROOT_PATH}/tools/build.sh $1 $2 $3 $4 $5 $6 $7 $8 $9
+${ROOT_PATH}/tools/build.sh "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"
 if [ $? -ne 0 ]
 then
 	exit 1