mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 09:22:51 +08:00
13 lines
180 B
Bash
Executable file
13 lines
180 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Usage: ./scripts/build.sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../"
|
|
|
|
echo "Start building backend..."
|
|
|
|
go build -o ./build/memos ./bin/server/main.go
|
|
|
|
echo "Backend built!"
|