scripts: document "updatedep.sh" script

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee
2018-03-07 12:47:43 -08:00
parent d598af104d
commit 27f0aa9cf0

View File

@@ -7,5 +7,14 @@ if ! [[ "$0" =~ scripts/updatedep.sh ]]; then
fi
go get -v -u github.com/golang/dep/cmd/dep
dep ensure -v
if [[ -z "$1" ]]; then
echo "dep ensure on all packages"
dep ensure -v
else
echo "dep update on" "$1"
# shellcheck disable=SC2086
dep ensure -v -update $1
fi
dep prune