Bladeren bron

scripts: fix overextending of variable name (#4888)

Robin Alexander Richtsfeld 7 jaren geleden
bovenliggende
commit
3cba8778b2
2 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  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