mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
167 B
Bash
11 lines
167 B
Bash
3 years ago
|
# 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"
|