summary refs log tree commit diff
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2020-02-05 13:29:52 -0500
committerGitHub <noreply@github.com>2020-02-05 13:29:52 -0500
commit5e019069ab33373ab21e951fbfa4fe1edd501c96 (patch)
treefd6fbba46ac1f130a41630cf0842c9edc704781e
parentMerge pull request #6840 from matrix-org/rav/federation_client_async (diff)
parentAdd quotes around pip install target (my shell complained without them). (diff)
downloadsynapse-5e019069ab33373ab21e951fbfa4fe1edd501c96.tar.xz
Merge pull request #6855 from matrix-org/clokep/readme-pip-install
Add quotes around the pip install target to avoid my shell complaining
-rw-r--r--README.rst2
-rw-r--r--changelog.d/6855.misc1
2 files changed, 2 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 2691dfc23d..4db7d17e94 100644
--- a/README.rst
+++ b/README.rst
@@ -272,7 +272,7 @@ to install using pip and a virtualenv::
 
     virtualenv -p python3 env
     source env/bin/activate
-    python -m pip install --no-use-pep517 -e .[all]
+    python -m pip install --no-use-pep517 -e ".[all]"
 
 This will run a process of downloading and installing all the needed
 dependencies into a virtual env.
diff --git a/changelog.d/6855.misc b/changelog.d/6855.misc
new file mode 100644
index 0000000000..904361ddfb
--- /dev/null
+++ b/changelog.d/6855.misc
@@ -0,0 +1 @@
+Update pip install directiosn in readme to avoid error when using zsh.