mirror of
https://github.com/usememos/memos.git
synced 2025-02-15 19:00:46 +01:00
14 lines
169 B
Bash
Executable File
14 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Usage: ./scripts/build.sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../"
|
|
|
|
echo "Start building backend..."
|
|
|
|
go build -o ./build/memos ./main.go
|
|
|
|
echo "Backend built!"
|