Browse Source

scripts: fix overextending of variable name (#4888)

pull/4709/merge
Robin Alexander Richtsfeld 7 years ago committed by 无闻
parent
commit
3cba8778b2
  1. 2
      scripts/build_freebsd.sh
  2. 2
      scripts/build_linux64.sh

2
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

2
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

Loading…
Cancel
Save