11 lines
204 B
Bash
Executable file
11 lines
204 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
export GOPATH="${HOME}/gocode"
|
|
|
|
if [ ! -e ${GOPATH}/bin/update-gotools ]; then
|
|
go get -v -u github.com/Luzifer/update-gotools
|
|
fi
|
|
|
|
exec ${GOPATH}/bin/update-gotools "$@"
|