diff options
| -rw-r--r-- | contributors/guide/github-workflow.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/contributors/guide/github-workflow.md b/contributors/guide/github-workflow.md index c96e4e7d..870da2d6 100644 --- a/contributors/guide/github-workflow.md +++ b/contributors/guide/github-workflow.md @@ -103,7 +103,13 @@ make cross #### Install etcd ```sh +cd $working_dir/kubernetes + +# Installs in ./third_party/etcd hack/install-etcd.sh + +# Add to PATH +echo export PATH="\$PATH:$working_dir/kubernetes/third_party/etcd" >> ~/.profile ``` #### Test @@ -228,4 +234,4 @@ git rebase -i upstream/master For mass automated fixups (e.g. automated doc formatting), use one or more commits for the changes to tooling and a final commit to apply the fixup en -masse. This makes reviews easier.
\ No newline at end of file +masse. This makes reviews easier. |
