memos/scripts/build.sh

14 lines
169 B
Bash
Raw Normal View History

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