memos/scripts/build.sh

14 lines
180 B
Bash
Raw Normal View History

2022-07-27 19:47:13 +08:00
#!/bin/bash
# Usage: ./scripts/build.sh
2022-07-09 12:57:08 +08:00
set -e
cd "$(dirname "$0")/../"
2022-08-14 17:55:36 +08:00
echo "Start building backend..."
2022-07-09 12:57:08 +08:00
2022-08-27 08:57:05 +08:00
go build -o ./build/memos ./bin/server/main.go
2022-07-09 12:57:08 +08:00
2022-08-14 17:55:36 +08:00
echo "Backend built!"