mirror of
https://github.com/luzifer-docker/personal-dns.git
synced 2024-11-09 18:20:02 +00:00
17 lines
312 B
Bash
17 lines
312 B
Bash
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
packages=(
|
|
github.com/Luzifer/bind-log-metrics@latest
|
|
github.com/Luzifer/named-blacklist@latest
|
|
github.com/Luzifer/rootzone@latest
|
|
)
|
|
|
|
export GOPRIVATE=github.com/Luzifer
|
|
|
|
for pkg in "${packages[@]}"; do
|
|
go install \
|
|
-mod=readonly \
|
|
-modcacherw \
|
|
"${pkg}"
|
|
done
|