diff options
| author | Chris McDonough <chrism@plope.com> | 2013-03-13 15:13:37 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2013-03-13 15:13:37 -0700 |
| commit | 13e241b21770a2471d520aa21b27e20f98aaecb3 (patch) | |
| tree | 913c9bf716432b8a1cd8e0e5779196c757eea117 /docs/tutorials/wiki2/distributing.rst | |
| parent | 6d62d124ee8ffd09459690e34aae95b43d0f2d53 (diff) | |
| parent | 919643eec1a480cee442331a966a9c6c90fb0965 (diff) | |
| download | pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.tar.gz pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.tar.bz2 pyramid-13e241b21770a2471d520aa21b27e20f98aaecb3.zip | |
Merge pull request #910 from tshepang/venv
consistency: use $VENV whenever virtualenv binaries are used
Diffstat (limited to 'docs/tutorials/wiki2/distributing.rst')
| -rw-r--r-- | docs/tutorials/wiki2/distributing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki2/distributing.rst b/docs/tutorials/wiki2/distributing.rst index 96293603c..3b048a141 100644 --- a/docs/tutorials/wiki2/distributing.rst +++ b/docs/tutorials/wiki2/distributing.rst @@ -12,13 +12,13 @@ On UNIX: .. code-block:: text - $ ../bin/python setup.py sdist + $ $VENV/bin/python setup.py sdist On Windows: .. code-block:: text - c:\pyramidtut> ..\Scripts\python setup.py sdist + c:\pyramidtut> %VENV%\Scripts\python setup.py sdist The output of such a command will be something like: |
