summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2019-04-01 09:44:33 -0700
committerGitHub <noreply@github.com>2019-04-01 09:44:33 -0700
commit728a2a92ce375db6c52bd20d9bf0f7d957ec079e (patch)
treef6b2f3cf838b4f3526fe469b1d82b16ab78ca9a7
parent9efe78aa3b8423c3da245ac0ef869cc5803b95c1 (diff)
parentda7d5ae22bf67360316ccc604c23257a71f1dbbc (diff)
Merge pull request #3440 from cartyc/add-export
added export to user and working dir examples
-rw-r--r--contributors/guide/github-workflow.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/guide/github-workflow.md b/contributors/guide/github-workflow.md
index cef4e0a3..60bde11f 100644
--- a/contributors/guide/github-workflow.md
+++ b/contributors/guide/github-workflow.md
@@ -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.