9 lines
106 B
Bash
Executable file
9 lines
106 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Building..."
|
|
|
|
go build -o zet cmd/zet/main.go
|
|
|
|
echo "Done."
|