FreePad/build.sh

15 lines
269 B
Bash
Raw Normal View History

2022-05-17 23:27:20 +03:00
#!/bin/sh
echo "Removing old";
rm dist/freepad;
# Remember current path
MYDIR=`pwd`;
# Go into src
cd src;
# Build
echo "Building..."
2022-05-18 01:36:18 +03:00
GIN_MODE=release CGO_ENABLED=0 GOOS=linux GIN_MODE=release go build -a -installsuffix cgo -o ../dist/freepad .
2022-05-17 23:27:20 +03:00
# Go back!
cd $MYDIR;