Commit d66bb47d by Michael DeHaan

Fixing a typo, still some more work to do on CLI.

parent 8e0af04c
...@@ -769,7 +769,7 @@ def execute_install(args, options, parser): ...@@ -769,7 +769,7 @@ def execute_install(args, options, parser):
tmp_file = fetch_role(role_src, role["version"], role_data, options) tmp_file = fetch_role(role_src, role["version"], role_data, options)
installed = False installed = False
if tmp_file: if tmp_file:
installed = install_role(role.get("name"), role.get("version"), tmp_file, options): installed = install_role(role.get("name"), role.get("version"), tmp_file, options)
# we're done with the temp file, clean it up # we're done with the temp file, clean it up
os.unlink(tmp_file) os.unlink(tmp_file)
# install dependencies, if we want them # install dependencies, if we want them
......
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