Skip to content

Commit

Permalink
scripts: fix overextending of variable name (gogs#4888)
Browse files Browse the repository at this point in the history
  • Loading branch information
Androbin authored and unknwon committed Nov 22, 2017
1 parent 1c33c93 commit 3cba877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/build_freebsd.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
outPlattform=freebsd
outArch=amd64
outPath=./output_$outPlattform_$outArch
outPath=./output_${outPlattform}_$outArch

rm -rf $outPath
mkdir $outPath
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_linux64.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
outPlattform=linux
outArch=amd64
outPath=./output_$outPlattform_$outArch
outPath=./output_${outPlattform}_$outArch

rm -rf $outPath
mkdir $outPath
Expand Down

0 comments on commit 3cba877

Please sign in to comment.