Просмотр исходного кода

scripts: fix overextending of variable name (#4888)

Robin Alexander Richtsfeld 7 лет назад
Родитель
Сommit
3cba8778b2
2 измененных файлов с 2 добавлено и 2 удалено
  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