mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 01:12:40 +08:00
10 lines
167 B
Bash
10 lines
167 B
Bash
# 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"
|