mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 10:19:34 +00:00
17 lines
222 B
Bash
Executable File
17 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
[ -d bin ] || mkdir bin
|
|
|
|
[ -e bin/labca ] || set -ev
|
|
if [ ! -e bin/labca ]; then
|
|
go mod download
|
|
|
|
go build -o bin/labca
|
|
fi
|
|
|
|
[ -e /bin/ip ] || (apt update && apt install -y iproute2)
|
|
|
|
bin/labca
|