diff options
author | Matthias Loibl <mail@matthiasloibl.com> | 2016-11-04 13:49:10 +0100 |
---|---|---|
committer | Matthias Loibl <mail@matthiasloibl.com> | 2016-11-04 13:49:10 +0100 |
commit | f01d927efbd1bcbb6c9312281c3c16179360b084 (patch) | |
tree | c1b28b79238aab09d05cc860983558e1e02b18cd /scripts | |
parent | a2514904cba3c89630fd76af38f672379d7c3326 (diff) | |
download | gitea-f01d927efbd1bcbb6c9312281c3c16179360b084.tar.gz gitea-f01d927efbd1bcbb6c9312281c3c16179360b084.zip |
Rename all occurrences of gogs.go
Signed-off-by: Matthias Loibl <mail@matthiasloibl.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.sh | 3 | ||||
-rwxr-xr-x | scripts/build_freebsd.sh | 5 | ||||
-rwxr-xr-x | scripts/build_linux64.sh | 5 |
3 files changed, 8 insertions, 5 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index cf127c2aee..1149a805ae 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,9 +1,10 @@ +#!/usr/bin/env bash outPath=./output rm -rf $outPath mkdir $outPath -go build ../gogs.go +go build ../main.go -o gitea PLATFORM=`uname | cut -d _ -f 1` if [ $PLATFORM = "MINGW32" ] || [ $PLATFORM = "MINGW64" ] || [ $PLATFORM = "CYGWIN" ]; then GOGS_EXE=gogs.exe diff --git a/scripts/build_freebsd.sh b/scripts/build_freebsd.sh index b53c6ac0d5..2c995bae21 100755 --- a/scripts/build_freebsd.sh +++ b/scripts/build_freebsd.sh @@ -1,3 +1,4 @@ +#!/usr/bin/env bash outPlattform=freebsd outArch=amd64 outPath=./output_$outPlattform_$outArch @@ -5,7 +6,7 @@ outPath=./output_$outPlattform_$outArch rm -rf $outPath mkdir $outPath -CGO_ENABLED=0 GOOS=$outPlattform GOARCH=$outArch go build ../gogs.go +CGO_ENABLED=0 GOOS=$outPlattform GOARCH=$outArch go build ../main.go -o gitea chmod +x gogs mv gogs $outPath/ @@ -24,4 +25,4 @@ cp ../README_ZH.md $outPath/ cp start.bat $outPath/ cp start.sh $outPath/ cp ../wercker.yml $outPath/ -cp mysql.sql $outPath/
\ No newline at end of file +cp mysql.sql $outPath/ diff --git a/scripts/build_linux64.sh b/scripts/build_linux64.sh index 528fc54cf0..6a3bdb65bc 100755 --- a/scripts/build_linux64.sh +++ b/scripts/build_linux64.sh @@ -1,3 +1,4 @@ +#!/usr/bin/env bash outPlattform=linux outArch=amd64 outPath=./output_$outPlattform_$outArch @@ -5,7 +6,7 @@ outPath=./output_$outPlattform_$outArch rm -rf $outPath mkdir $outPath -CGO_ENABLED=0 GOOS=$outPlattform GOARCH=$outArch go build ../gogs.go +CGO_ENABLED=0 GOOS=$outPlattform GOARCH=$outArch go build ../main.go -o gitea chmod +x gogs mv gogs $outPath/ @@ -24,4 +25,4 @@ cp ../README_ZH.md $outPath/ cp start.bat $outPath/ cp start.sh $outPath/ cp ../wercker.yml $outPath/ -cp mysql.sql $outPath/
\ No newline at end of file +cp mysql.sql $outPath/ |