mirror of
https://github.com/gogs/gogs.git
synced 2026-01-27 09:39:18 +01:00
scripts: fix overextending of variable name (#4888)
This commit is contained in:
committed by
无闻
parent
1c33c936e6
commit
3cba8778b2
@@ -1,6 +1,6 @@
|
||||
outPlattform=freebsd
|
||||
outArch=amd64
|
||||
outPath=./output_$outPlattform_$outArch
|
||||
outPath=./output_${outPlattform}_$outArch
|
||||
|
||||
rm -rf $outPath
|
||||
mkdir $outPath
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
outPlattform=linux
|
||||
outArch=amd64
|
||||
outPath=./output_$outPlattform_$outArch
|
||||
outPath=./output_${outPlattform}_$outArch
|
||||
|
||||
rm -rf $outPath
|
||||
mkdir $outPath
|
||||
|
||||
Reference in New Issue
Block a user