memos/scripts/build.sh

11 lines
167 B
Bash
Raw Normal View History

2022-07-09 07:57:08 +03:00
# Usage: sh ./scripts/build.sh
set -e
cd "$(dirname "$0")/../"
echo "Start building..."
go build -o ./memos-build/memos ./bin/server/main.go
echo "Build finished"