1
0
forked from sneak/hacks
Files
hacks/golang-binaries-installer/install.sh
2022-01-20 22:46:18 -08:00

18 lines
459 B
Bash

# this is designed to be symlinked to ~/.bashrc.d/999.goinstaller.sh
if ! which mkcert 2>&1 >/dev/null ; then
go install -v filippo.io/mkcert@latest
fi
if ! which certstrap 2>&1 >/dev/null ; then
go install -v github.com/square/certstrap@latest
fi
if ! which f2 2>&1 >/dev/null ; then
go install -v github.com/ayoisaiah/f2/cmd/f2@latest
fi
if ! which pack 2>&1 >/dev/null ; then
go install -v github.com/buildpacks/pack/cmd/pack@latest
fi