mirror of
https://github.com/usememos/memos.git
synced 2024-11-14 18:59:53 +08:00
13 lines
178 B
Bash
Executable file
13 lines
178 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Usage: ./scripts/build.sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../"
|
|
|
|
echo "Start building..."
|
|
|
|
go build -o ./memos-build/memos ./bin/server/main.go
|
|
|
|
echo "Build finished"
|