Commit 43ca6afd authored by Łukasz Nowak's avatar Łukasz Nowak

- make it possible to pass arguments to generated bin/boostrap*


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38910 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 92c4a034
......@@ -36,7 +36,7 @@ eggs = zc.buildout
python = python2.4
scripts =
buildout=bootstrap2.4
arguments = ["bootstrap"]
arguments = sys.argv[1:] + ["bootstrap"]
[rebootstrap2.4]
recipe = zc.recipe.egg
......
......@@ -15,7 +15,7 @@ eggs = zc.buildout
python = python2.6
scripts =
buildout=bootstrap2.6
arguments = ["bootstrap"]
arguments = sys.argv[1:] + ["bootstrap"]
[rebootstrap2.6]
recipe = zc.recipe.egg
......
......@@ -26,7 +26,7 @@ eggs = zc.buildout
python = python2.7
scripts =
buildout=bootstrap2.7
arguments = ["bootstrap"]
arguments = sys.argv[1:] + ["bootstrap"]
[rebootstrap2.7]
recipe = zc.recipe.egg
......
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