Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

contributors/devel: update godeps instructions with required hack scripts #591

Merged
merged 1 commit into from
May 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion contributors/devel/godep.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export GOPATH=$KPATH

```sh
cd $KPATH/src/k8s.io/kubernetes
godep restore
./hack/godep-restore.sh
```

4) Next, you can either add a new dependency or update an existing one.
Expand Down Expand Up @@ -86,6 +86,10 @@ godep get $DEP/...
rm -rf Godeps
rm -rf vendor
./hack/godep-save.sh
# Regenerate removed BUILD, licenses, and client-go Godeps files.
./hack/update-bazel.sh
./hack/update-godeps-licenses.sh
./hack/update-staging-client-go.sh
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@caesarxuchao I am worried that we are documenting this for contributors...

git checkout -- $(git status -s | grep "^ D" | awk '{print $2}' | grep ^Godeps)
```

Expand Down