Răsfoiți Sursa

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

QMK Bot 4 ani în urmă
părinte
comite
2f367bab98
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      lib/python/qmk/commands.py

+ 1 - 1
lib/python/qmk/commands.py

@@ -239,6 +239,6 @@ def run(command, *args, **kwargs):
         safecmd = map(str, command)
         safecmd = map(shlex.quote, 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)