Avoid that url is interpretated as a pattern by zsh.

This commit is contained in:
Tobias Preuss 2014-04-09 10:26:07 +02:00 committed by amercader
parent 3938a7e8a7
commit 97a84f3b3f
1 changed files with 3 additions and 3 deletions

View File

@ -75,17 +75,17 @@ Install the extension
To target the latest CKAN core release::
(pyenv) $ pip install -e git+https://github.com/okfn/ckanext-spatial.git@stable#egg=ckanext-spatial
(pyenv) $ pip install -e "git+https://github.com/okfn/ckanext-spatial.git@stable#egg=ckanext-spatial"
To target an old release (if a release branch exists, otherwise use
``stable``)::
(pyenv) $ pip install -e git+https://github.com/okfn/ckanext-spatial.git@release-v1.8#egg=ckanext-spatial
(pyenv) $ pip install -e "git+https://github.com/okfn/ckanext-spatial.git@release-v1.8#egg=ckanext-spatial"
To target CKAN ``master``, use the extension ``master`` branch (ie no
branch defined)::
(pyenv) $ pip install -e git+https://github.com/okfn/ckanext-spatial.git#egg=ckanext-spatial
(pyenv) $ pip install -e "git+https://github.com/okfn/ckanext-spatial.git#egg=ckanext-spatial"
2. Install the rest of python modules required by the extension::