mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 13:36:20 +00:00
14 lines
172 B
Bash
Executable File
14 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Usage: ./scripts/build.sh
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../"
|
|
|
|
echo "Start building backend..."
|
|
|
|
go build -o ./build/shortify ./main.go
|
|
|
|
echo "Backend built!"
|