mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-06 10:19:11 +01:00
Update build.sh for Windows
This commit is contained in:
parent
9512eec034
commit
08f7547acf
1 changed files with 8 additions and 2 deletions
|
@ -4,8 +4,14 @@ rm -rf $outPath
|
|||
mkdir $outPath
|
||||
|
||||
go build ../gogs.go
|
||||
chmod +x gogs
|
||||
mv gogs $outPath/
|
||||
PLATFORM=`uname | cut -d _ -f 1`
|
||||
if [ $PLATFORM = "MINGW32" ] || [ $PLATFORM = "MINGW64" ] || [ $PLATFORM = "CYGWIN" ]; then
|
||||
GOGS_EXE=gogs.exe
|
||||
else
|
||||
GOGS_EXE=gogs
|
||||
fi
|
||||
chmod +x $GOGS_EXE
|
||||
mv $GOGS_EXE $outPath/
|
||||
|
||||
cp -r ../conf/ $outPath/conf/
|
||||
cp -r ../custom/ $outPath/custom/
|
||||
|
|
Loading…
Reference in a new issue