python - How to add more eggs from the command line? -


my buildout.cfg looks :

[eggs]    recipe = zc.recipe.egg    eggs =   package1   package2 

i able add more eggs on command line when run buildout. works 1 egg with:

bin/buildout eggs:eggs+=package3

but did not find syntax add more 1 package. none of these working:

bin/buildout eggs:eggs+=package3 eggs:eggs+=package4

bin/buildout "eggs:eggs+=package3 package4"

bin/buildout "eggs:eggs+=package3:package4"

with variations of : , ; , \n seprator.

buildout takes newlines separators when merging += , -= options. you'll have insert newlines.

bash lets insert newlines on command line within quoted strings:

$ bin/buildout "eggs:eggs+=package3 > package4 > " 

you press enter after package3 , can insert newlines, until enter closing " quote.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -