aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/commands.py
diff options
context:
space:
mode:
authorErovia <Erovia@users.noreply.github.com>2020-03-29 14:29:44 +0200
committerGitHub <noreply@github.com>2020-03-29 14:29:44 +0200
commitc89c0841468ad23153a9fc9578d344845df31a88 (patch)
treeda17997995c2657511b3f4a8eefbdd0b3c3725a2 /lib/python/qmk/commands.py
parent13fff52f6b629e4345e7ea2296b3d100aa9df245 (diff)
downloadqmk_firmware-c89c0841468ad23153a9fc9578d344845df31a88.tar.gz
qmk_firmware-c89c0841468ad23153a9fc9578d344845df31a88.zip
CLI: More MSYS2 fixes (#8577)
* CLI: More MSYS2 fixes Now I can fully setup and work with qmk_firmware on an MSYS2 installation without any errors or exceptions. * Apply suggestions from code review Co-Authored-By: skullydazed <skullydazed@users.noreply.github.com> * Some improvements * Remove unnecessary import * Remove slow, unused code Getting the version from GIT was slow on both Windows and Docker. Until we find a better, faster way, this is removed. * remove unused imports * Implement @vomindoraan's suggestions * refine how we pick the shell to use * Apply @fauxpark's suggestions fauxpark investigated the topic of shells in MSYS2 a bit and we come to the conclusion that the safest bet was to just use the user's shell. Anything more just opens up more edge-cases than it solves. Co-Authored-By: Ryan <fauxpark@gmail.com> * Use `platform_id` in doctor This will bring it in line with the new code. Co-authored-by: skullydazed <skullydazed@users.noreply.github.com> Co-authored-by: skullY <skullydazed@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'lib/python/qmk/commands.py')
-rw-r--r--lib/python/qmk/commands.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py
index 3d4ed1616..3424cdf08 100644
--- a/lib/python/qmk/commands.py
+++ b/lib/python/qmk/commands.py
@@ -1,6 +1,10 @@
1"""Helper functions for commands. 1"""Helper functions for commands.
2""" 2"""
3import json 3import json
4import os
5import platform
6import subprocess
7import shlex
4 8
5import qmk.keymap 9import qmk.keymap
6 10
@@ -61,3 +65,19 @@ def parse_configurator_json(configurator_file):
61 user_keymap = json.load(configurator_file) 65 user_keymap = json.load(configurator_file)
62 66
63 return user_keymap 67 return user_keymap
68
69
70def run(command, *args, **kwargs):
71 """Run a command with subprocess.run
72 """
73 platform_id = platform.platform().lower()
74
75 if isinstance(command, str):
76 raise TypeError('`command` must be a non-text sequence such as list or tuple.')
77
78 if 'windows' in platform_id:
79 safecmd = map(shlex.quote, command)
80 safecmd = ' '.join(safecmd)
81 command = [os.environ['SHELL'], '-c', safecmd]
82
83 return subprocess.run(command, *args, **kwargs)