mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02: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:
|
||||
if major and major < 2:
|
||||
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-rdoc')
|
||||
cmd.append('--no-ri')
|
||||
|
|
Loading…
Reference in a new issue