Browse Source

scripts: fix overextending of variable name (#4888)

Robin Alexander Richtsfeld 6 years ago
parent
commit
3cba8778b2
2 changed files with 2 additions and 2 deletions
  1. 1 1
      scripts/build_freebsd.sh
  2. 1 1
      scripts/build_linux64.sh

+ 1 - 1
scripts/build_freebsd.sh

@@ -1,6 +1,6 @@
 outPlattform=freebsd
 outArch=amd64
-outPath=./output_$outPlattform_$outArch
+outPath=./output_${outPlattform}_$outArch
 
 rm -rf $outPath
 mkdir $outPath

+ 1 - 1
scripts/build_linux64.sh

@@ -1,6 +1,6 @@
 outPlattform=linux
 outArch=amd64
-outPath=./output_$outPlattform_$outArch
+outPath=./output_${outPlattform}_$outArch
 
 rm -rf $outPath
 mkdir $outPath