aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/install.md
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2015-03-31 19:14:34 +0000
committerGravatar Laurent Le Brun <laurentlb@google.com>2015-03-31 20:12:29 +0000
commitac0716f0c9160e634165c753c942322ca28f9b08 (patch)
tree3eac49355b5b7485644fcffb8b32dfcea989e838 /site/docs/install.md
parentd69c5dd1426ec3979bb822e56ba2969b8b6d4a18 (diff)
Bazel install.md: export PATH should contain the directory containing the binaries rather than the binaries themselves.
https://github.com/google/bazel/pull/84 -- MOS_MIGRATED_REVID=89990197
Diffstat (limited to 'site/docs/install.md')
-rw-r--r--site/docs/install.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/install.md b/site/docs/install.md
index c70ee20667..63ed100d1d 100644
--- a/site/docs/install.md
+++ b/site/docs/install.md
@@ -108,7 +108,7 @@ The Bazel executable is located at `output/bazel` in the bazel directory.
It's a good idea to add this path to your default paths, like so (you
can also add this command to your `~/.bashrc`):
- $ export PATH="$PATH:$HOME/bazel/output/bazel"
+ $ export PATH="$PATH:$HOME/bazel/output"
You must run Bazel from within a source code tree that is properly
configured for use with Bazel. We call such a tree a _workspace