summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Ennis <james.ennis@codethink.com>2018-03-26 17:48:46 +0100
committerJavier Jardón <jjardon@gnome.org>2018-03-27 18:05:14 +0000
commit0cb0be7adcbb6f9370b62351875ef7094f9b8b6e (patch)
treef55ebf829f600a9735d7c1ef92c7c23ad9202a28
parent1e2100d9b18f7697f3b344032d51b3c26da767e0 (diff)
downloadbuildstream-0cb0be7adcbb6f9370b62351875ef7094f9b8b6e.tar.gz
install.rst: Change ~ for $HOME just incase it expands to characters bash does not like
-rw-r--r--doc/source/install.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/install.rst b/doc/source/install.rst
index 1a2791c85..13b68ad70 100644
--- a/doc/source/install.rst
+++ b/doc/source/install.rst
@@ -122,7 +122,7 @@ you need to ensure that ``PATH`` is adjusted.
A regular way to do this is to add the following line to the end of your ``~/.bashrc``::
- export PATH=${PATH}:~/.local/bin
+ export PATH="${PATH}:${HOME}/.local/bin"
.. note::