diff options
author | Thomas Boerger <thomas@webhippie.de> | 2016-11-04 14:40:43 +0100 |
---|---|---|
committer | Thomas Boerger <thomas@webhippie.de> | 2016-11-04 23:46:11 +0100 |
commit | b32776d5336b8857b72a4b38b57ce31ea669dc36 (patch) | |
tree | aa04ad1e0d768727d867ab95eb0f46e7218c0dbc /scripts/build_linux64.sh | |
parent | 3dd14ee522edeac24cdb70be6354fd2c8ebfc47d (diff) | |
download | gitea-b32776d5336b8857b72a4b38b57ce31ea669dc36.tar.gz gitea-b32776d5336b8857b72a4b38b57ce31ea669dc36.zip |
Dropped outdated build scripts
Diffstat (limited to 'scripts/build_linux64.sh')
-rwxr-xr-x | scripts/build_linux64.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/scripts/build_linux64.sh b/scripts/build_linux64.sh deleted file mode 100755 index 6a3bdb65bc..0000000000 --- a/scripts/build_linux64.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env bash -outPlattform=linux -outArch=amd64 -outPath=./output_$outPlattform_$outArch - -rm -rf $outPath -mkdir $outPath - -CGO_ENABLED=0 GOOS=$outPlattform GOARCH=$outArch go build ../main.go -o gitea -chmod +x gogs -mv gogs $outPath/ - -cp -r ../conf/ $outPath/conf/ -cp -r ../custom/ $outPath/custom/ -cp -r dockerfiles/ $outPath/dockerfiles/ -cp -r ../public/ $outPath/public/ -cp -r ../templates/ $outPath/templates/ -cp ../cert.pem $outPath/ -cp ../CONTRIBUTING.md $outPath/ -cp gogs_supervisord.sh $outPath/ -cp ../key.pem $outPath/ -cp ../LICENSE $outPath/ -cp ../README.md $outPath/ -cp ../README_ZH.md $outPath/ -cp start.bat $outPath/ -cp start.sh $outPath/ -cp ../wercker.yml $outPath/ -cp mysql.sql $outPath/ |