manually fix hack/verify-staging-imports.sh

manually fix hack/godep-save.sh

manually fix .linted_packages

squash, manually fix lint

manually fix hack/update-staging-godeps.sh

manually fix update-staging-godeps.sh; let it update godep of client-go
This commit is contained in:
Chao Xu
2017-06-11 15:18:51 -07:00
parent 945593d4de
commit 83235f940a
4 changed files with 17 additions and 8 deletions

View File

@@ -79,8 +79,8 @@ function updateGodepManifest() {
# move into staging and save the dependencies for everything in order
mkdir -p "${TMP_GOPATH}/src/k8s.io"
for repo in $(ls ${KUBE_ROOT}/staging/src/k8s.io); do
# we have to skip client-go because it does unusual manipulation of its godeps
if [ "${repo}" == "client-go" ]; then
# we have to skip api because it does not depend on anything
if [ "${repo}" == "api" ]; then
continue
fi
# we skip metrics because it's synced to the real repo manually