1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-17 00:35:46 +00:00

Rename all occurrences of gogs.go

Signed-off-by: Matthias Loibl <mail@matthiasloibl.com>
This commit is contained in:
Matthias Loibl 2016-11-04 13:49:10 +01:00
parent a2514904cb
commit f01d927efb
4 changed files with 9 additions and 6 deletions

View File

@ -24,7 +24,7 @@ check: test
dist: release
govet:
$(GOVET) gogs.go
$(GOVET) main.go
$(GOVET) models modules routers
build: $(GENERATED)

View File

@ -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

View File

@ -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/

View File

@ -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/