From 205a5abee98af295967babf8d967ac1377019e1d Mon Sep 17 00:00:00 2001 From: Cao Shufeng Date: Tue, 28 Mar 2017 04:05:47 -0400 Subject: [PATCH] Use "hack/godep-restore.sh" instead of godep restore --- hack/update-staging-client-go.sh | 2 +- hack/update-staging-godeps.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/update-staging-client-go.sh b/hack/update-staging-client-go.sh index 5ac6b80ac05..d608ed3e9b3 100755 --- a/hack/update-staging-client-go.sh +++ b/hack/update-staging-client-go.sh @@ -28,7 +28,7 @@ cd ${KUBE_ROOT} echo "Checking whether godeps are restored" if ! kube::util::godep_restored 2>&1 | sed 's/^/ /'; then - echo -e '\nRun 'godep restore' to download dependencies.' 1>&2 + echo -e '\nExecute script 'hack/godep-restore.sh' to download dependencies.' 1>&2 exit 1 fi diff --git a/hack/update-staging-godeps.sh b/hack/update-staging-godeps.sh index e6d9e8c3bce..b81c5bdaae7 100755 --- a/hack/update-staging-godeps.sh +++ b/hack/update-staging-godeps.sh @@ -51,7 +51,7 @@ source "${KUBE_ROOT}/hack/lib/util.sh" echo "Checking whether godeps are restored" if ! kube::util::godep_restored 2>&1 | sed 's/^/ /'; then - echo -e '\nRun 'godep restore' to download dependencies.' 1>&2 + echo -e '\nExecute script 'hack/godep-restore.sh' to download dependencies.' 1>&2 exit 1 fi