Commit 16a89c22 authored by nibrahim's avatar nibrahim

--help install command no longer tries to install fixes #121

--HG--
branch : distribute
extra : rebase_source : 11dab4d1ff0d41ef9b7e808ce7e41592b18a7270
parent 5c528f51
......@@ -10,6 +10,7 @@ CHANGES
* Issue 15 and 48: Introduced a socket timeout of 15 seconds on url openings
* Added indexsidebar.html into MANIFEST.in
* Issue 108: Fixed TypeError with Python3.1
* Issue 121: Fixed --help install command trying to actually install.
------
0.6.10
......
......@@ -10,6 +10,7 @@ Contributors
* Jannis Leidel
* Lennart Regebro
* Martin von Löwis
* Noufal Ibrahim
* Philip Jenvey
* Reinout van Rees
* Tarek Ziadé
......
......@@ -82,7 +82,9 @@ def _being_installed():
# Installed by buildout, don't mess with a global setuptools.
return False
# easy_install marker
return 'install' in sys.argv[1:] or _easy_install_marker()
if "--help" in sys.argv[1:] or "-h" in sys.argv[1:]: # Don't bother doing anything if they're just asking for help
return False
return 'install' in sys.argv[1:] or _easy_install_marker()
if _being_installed():
from distribute_setup import _before_install
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment