Merge remote-tracking branch 'origin/master' into develop

This commit is contained in:
QMK Bot 2021-05-09 17:20:16 +00:00
commit 2f367bab98

View file

@ -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)