scripts: fix overextending of variable name (#4888)

pull/4880/head^2
Robin Alexander Richtsfeld 2017-11-22 19:40:38 +01:00 committed by 无闻
parent 1c33c936e6
commit 3cba8778b2
2 changed files with 2 additions and 2 deletions

View File

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

View File

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