Files

8 lines
85 B
Bash
Raw Permalink Normal View History

2025-05-15 10:28:05 +02:00
#!/bin/bash
echo "Building..."
cd src/ || exit 1
go build -o ../
cd ..
echo "Done."