mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-30 03:07:59 +08:00
33 lines
635 B
Bash
Executable File
33 lines
635 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Change version number? [Version number/N]";
|
|
read x
|
|
|
|
if [[ $x =~ ^[1-9].[0-9].[0-9]$ ]]
|
|
then
|
|
sed -i -e "s/const appVersion = \"[0-9].[0-9].[0-9]\"/const appVersion = \"$x\"/g" main.go
|
|
sed -i -e "s/'[0-9].[0-9].[0-9]'/'$x'/g" model/sql/goploy.sql
|
|
sed -i -e "s/GOPLOY_VER=v[0-9].[0-9].[0-9]/GOPLOY_VER=v$x/g" docker/Dockerfile
|
|
fi
|
|
|
|
echo "Build web? [Y/N]";
|
|
read x
|
|
|
|
if [ "$x" == Y ] || [ "$x" == y ]
|
|
then
|
|
cd web
|
|
npm run build
|
|
cd ..
|
|
fi
|
|
|
|
|
|
echo "Building goploy";
|
|
|
|
env GOOS=linux go build -o goploy main.go
|
|
|
|
env GOOS=darwin go build -o goploy.mac main.go
|
|
|
|
env GOOS=windows go build -o goploy.exe main.go
|
|
|
|
|