mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #8995 from mscherer/fix_galaxy
Do not remove local role file if given on the commandline
This commit is contained in:
commit
1e68041f9c
1 changed files with 2 additions and 1 deletions
|
@ -787,7 +787,8 @@ def execute_install(args, options, parser):
|
||||||
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)
|
if tmp_file != role_src:
|
||||||
|
os.unlink(tmp_file)
|
||||||
# install dependencies, if we want them
|
# install dependencies, if we want them
|
||||||
if not no_deps and installed:
|
if not no_deps and installed:
|
||||||
if not role_data:
|
if not role_data:
|
||||||
|
|
Loading…
Reference in a new issue