pythonbrew
pythonbrew copied to clipboard
Accept buildout arguments
I would like to be able to use arguments for the buildout command. For example, currently I'm doing:
buildout -c dev.cfg
to run buildout in a dev environment.
My suggestion (IMHO) would be to do something like:
pythonbrew buildout --args -c dev.cfg
Thanks, and great project BTW!
update:
Forgot to add the workaround in case someone else runs into this:
wget "http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py"
pythonbrew switch 2.7.2 # or which ever version you are using python ./bootstrap.py -d -c dev.cfg
or in one command...
pythonbrew py ./bootstrap.py -d -c dev.cfg
Now you can use ./bin/buildout