dns-bench/build_q.sh

23 lines
241 B
Bash
Raw Permalink Normal View History

2024-12-21 22:32:33 +04:00
#!/bin/bash
source .build.sh
echo
echo '==> Checking deps'
which git
which go
echo
echo '==> Cloning repo'
clone https://github.com/natesales/q.git q
cd q
trap 'cd ..' EXIT
echo
echo '==> Building q'
build_go -o q
echo
echo '==> Done'