This commit is contained in:
2022-01-20 22:46:18 -08:00
parent a13c18f93d
commit 60be955549
5 changed files with 72 additions and 3 deletions

View File

@@ -1,9 +1,17 @@
# 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 github.com/square/certstrap@latest
go install -v github.com/square/certstrap@latest
fi
if ! which f2 2>&1 >/dev/null ; then
go install github.com/ayoisaiah/f2/cmd/f2@latest
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