memos/scripts/build.sh
boojack 1517688076
chore: update code structure (#1139)
* chore: update code structure

* chore: update
2023-02-23 00:07:16 +08:00

13 lines
169 B
Bash
Executable file

#!/bin/bash
# Usage: ./scripts/build.sh
set -e
cd "$(dirname "$0")/../"
echo "Start building backend..."
go build -o ./build/memos ./main.go
echo "Backend built!"