mirror of https://github.com/gogs/gogs.git
scripts: fix overextending of variable name (#4888)
parent
1c33c936e6
commit
3cba8778b2
|
@ -1,6 +1,6 @@
|
||||||
outPlattform=freebsd
|
outPlattform=freebsd
|
||||||
outArch=amd64
|
outArch=amd64
|
||||||
outPath=./output_$outPlattform_$outArch
|
outPath=./output_${outPlattform}_$outArch
|
||||||
|
|
||||||
rm -rf $outPath
|
rm -rf $outPath
|
||||||
mkdir $outPath
|
mkdir $outPath
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
outPlattform=linux
|
outPlattform=linux
|
||||||
outArch=amd64
|
outArch=amd64
|
||||||
outPath=./output_$outPlattform_$outArch
|
outPath=./output_${outPlattform}_$outArch
|
||||||
|
|
||||||
rm -rf $outPath
|
rm -rf $outPath
|
||||||
mkdir $outPath
|
mkdir $outPath
|
||||||
|
|
Loading…
Reference in New Issue