mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00: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/corgi ./bin/server/main.go
|
|
|
|
echo "Backend built!"
|