We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if i have a task like this:
@task(autoprint=True) def list_things(con): for thing in range(3): yield thing
invoke (well, fabric, in my case, but all the same right?) will do this:
$ fab list_things <generator object _list_remote_repos at 0x7fee70de2d40>
I don't find that very pretty, and think it would be much more elegant to do:
$ fab list_things 1 2 3
no? :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
if i have a task like this:
invoke (well, fabric, in my case, but all the same right?) will do this:
I don't find that very pretty, and think it would be much more elegant to do:
no? :)
The text was updated successfully, but these errors were encountered: