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