Browse Source

scripts: fix overextending of variable name (#4888)

Robin Alexander Richtsfeld 7 năm trước cách đây
mục cha
commit
3cba8778b2
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  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