bower module. Non-interactive mode and allow-root moved to _exec, they should affect all commands
This commit is contained in:
parent
1291f9a25a
commit
5bfe8f2a44
1 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ class Bower(object):
|
||||||
|
|
||||||
def _exec(self, args, run_in_check_mode=False, check_rc=True):
|
def _exec(self, args, run_in_check_mode=False, check_rc=True):
|
||||||
if not self.module.check_mode or (self.module.check_mode and run_in_check_mode):
|
if not self.module.check_mode or (self.module.check_mode and run_in_check_mode):
|
||||||
cmd = ["bower"] + args
|
cmd = ["bower"] + args + ['--config.interactive=false', '--allow-root']
|
||||||
|
|
||||||
if self.name:
|
if self.name:
|
||||||
cmd.append(self.name_version)
|
cmd.append(self.name_version)
|
||||||
|
@ -108,7 +108,7 @@ class Bower(object):
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
def list(self):
|
def list(self):
|
||||||
cmd = ['list', '--json', '--config.interactive=false', '--allow-root']
|
cmd = ['list', '--json']
|
||||||
|
|
||||||
installed = list()
|
installed = list()
|
||||||
missing = list()
|
missing = list()
|
||||||
|
|
Loading…
Reference in a new issue