Mention -v flag for godep-restore.sh

The `hack/run-in-gopath.sh hack/godep-restore.sh` command shows no progress information and it can take a lot of time, so it's good to mention that if you want to see what is happening, you can use the `-v` flag to turn on verbose mode of `godep restore`.
This commit is contained in:
QuaSoft 2018-07-23 13:35:35 +03:00 committed by GitHub
parent 1171a23ab2
commit a8ba2515ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -63,6 +63,13 @@ simply `make clean` or `rm -rf _output`, and run it again.
Now you should have a clean copy of all of the Kubernetes dependencies. Now you should have a clean copy of all of the Kubernetes dependencies.
Downloading dependencies might take a while, so if you want to see progress
information use the `-v` flag:
```sh
hack/run-in-gopath.sh hack/godep-restore.sh -v
```
## Making changes ## Making changes
The most common things people need to do with deps are add and update them. The most common things people need to do with deps are add and update them.