mirror of
https://github.com/usememos/memos.git
synced 2024-11-11 07:24:18 +03:00
14 lines
180 B
Bash
Executable File
14 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!"
|