mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 17:12:02 +03:00
14 lines
178 B
Bash
Executable File
14 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"
|