mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Correctly handle option user_install in gem module
This commit is contained in:
parent
4a3b762afe
commit
f958a5ac81
1 changed files with 3 additions and 1 deletions
|
@ -157,7 +157,9 @@ def install(module):
|
||||||
else:
|
else:
|
||||||
if major and major < 2:
|
if major and major < 2:
|
||||||
cmd.append('--include-dependencies')
|
cmd.append('--include-dependencies')
|
||||||
if not module.params['user_install']:
|
if module.params['user_install']:
|
||||||
|
cmd.append('--user-install')
|
||||||
|
else:
|
||||||
cmd.append('--no-user-install')
|
cmd.append('--no-user-install')
|
||||||
cmd.append('--no-rdoc')
|
cmd.append('--no-rdoc')
|
||||||
cmd.append('--no-ri')
|
cmd.append('--no-ri')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue