Commit f946e1fc authored by Jim Fulton's avatar Jim Fulton

Fixed: bootstraps weren't completed correctly if settings (X:Y=Z) were

       used.
parent cc9c562b
...@@ -154,9 +154,8 @@ ws.add_entry(tmpeggs) ...@@ -154,9 +154,8 @@ ws.add_entry(tmpeggs)
ws.require(requirement) ws.require(requirement)
import zc.buildout.buildout import zc.buildout.buildout
if not args: if not [a for a in args if '=' not in a]:
# Note that if there are args, they may be for another command, say, init. args.append('bootstrap')
args = ['bootstrap']
# if -c was provided, we push it back into args for buildout' main function # if -c was provided, we push it back into args for buildout' main function
if options.config_file is not None: if options.config_file is not None:
......
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