From 27f0aa9cf0fcb8961ed6f7114a3ecbc6396dbf3a Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Wed, 7 Mar 2018 12:47:43 -0800 Subject: [PATCH] scripts: document "updatedep.sh" script Signed-off-by: Gyuho Lee --- scripts/updatedep.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/updatedep.sh b/scripts/updatedep.sh index f09c3f5f3..e4d723354 100755 --- a/scripts/updatedep.sh +++ b/scripts/updatedep.sh @@ -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