Merge pull request #3440 from cartyc/add-export

added export to user and working dir examples
This commit is contained in:
Kubernetes Prow Robot 2019-04-01 09:44:33 -07:00 committed by GitHub
commit 728a2a92ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ Define a local working directory:
# You must follow exactly this pattern,
# neither `$GOPATH/src/github.com/${your github profile name/`
# nor any other pattern will work.
working_dir=$GOPATH/src/k8s.io
export working_dir=$GOPATH/src/k8s.io
```
> If you already do Go development on github, the `k8s.io` directory
@ -31,7 +31,7 @@ working_dir=$GOPATH/src/k8s.io
Set `user` to match your github profile name:
```sh
user={your github profile name}
export user={your github profile name}
```
Both `$working_dir` and `$user` are mentioned in the figure above.