diff options
author | Robin Alexander Richtsfeld <robin.richtsfeld@gmail.com> | 2017-11-22 19:40:38 +0100 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2017-11-22 13:40:38 -0500 |
commit | 3cba8778b21232b344fc35a4ff4397a70ac85eee (patch) | |
tree | 148c93a72042519457b1c4d8f5c42963947ef1a9 /scripts/build_freebsd.sh | |
parent | 1c33c936e6c7e2b23d8409a4d0809387bb6ef754 (diff) |
scripts: fix overextending of variable name (#4888)
Diffstat (limited to 'scripts/build_freebsd.sh')
-rwxr-xr-x | scripts/build_freebsd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build_freebsd.sh b/scripts/build_freebsd.sh index b53c6ac0..9662f776 100755 --- a/scripts/build_freebsd.sh +++ b/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 |