Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
2f367bab98
1 changed files with 1 additions and 1 deletions
|
@ -239,6 +239,6 @@ def run(command, *args, **kwargs):
|
||||||
safecmd = map(str, command)
|
safecmd = map(str, command)
|
||||||
safecmd = map(shlex.quote, safecmd)
|
safecmd = map(shlex.quote, safecmd)
|
||||||
safecmd = ' '.join(safecmd)
|
safecmd = ' '.join(safecmd)
|
||||||
command = [os.environ['SHELL'], '-c', safecmd]
|
command = [os.environ.get('SHELL', '/usr/bin/bash'), '-c', safecmd]
|
||||||
|
|
||||||
return subprocess.run(command, *args, **kwargs)
|
return subprocess.run(command, *args, **kwargs)
|
||||||
|
|
Loading…
Reference in a new issue