diff options
author | Zach White <skullydazed@gmail.com> | 2021-05-19 15:49:11 -0700 |
---|---|---|
committer | Zach White <skullydazed@gmail.com> | 2021-05-19 15:49:11 -0700 |
commit | 6955c5a00295382d3b4151a840aa5c929cd98059 (patch) | |
tree | 26109c4ed2a266650fc5fad19ce5f784bc7c346b /lib/python/qmk/cli/doctor.py | |
parent | 82aa9ad4a567695d1f7d0b1e36bf8563d2967813 (diff) | |
parent | db1eacdaacb9c8f6889f46bc1c6af155b81ad72a (diff) | |
download | qmk_firmware-6955c5a00295382d3b4151a840aa5c929cd98059.tar.gz qmk_firmware-6955c5a00295382d3b4151a840aa5c929cd98059.zip |
Merge remote-tracking branch 'origin/master' into develop
Resolved Conflicts:
lib/python/qmk/tests/test_cli_commands.py
util/install/fedora.sh
Diffstat (limited to 'lib/python/qmk/cli/doctor.py')
-rwxr-xr-x | lib/python/qmk/cli/doctor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/qmk/cli/doctor.py b/lib/python/qmk/cli/doctor.py index 4a2e2010f7..9e10570620 100755 --- a/lib/python/qmk/cli/doctor.py +++ b/lib/python/qmk/cli/doctor.py @@ -3,12 +3,12 @@ Check out the user's QMK environment and make sure it's ready to compile. """ import platform +from subprocess import DEVNULL from milc import cli from milc.questions import yesno from qmk import submodules from qmk.constants import QMK_FIRMWARE -from qmk.commands import run from qmk.os_helpers import CheckStatus, check_binaries, check_binary_versions, check_submodules, check_git_repo @@ -93,7 +93,7 @@ def doctor(cli): if not bin_ok: if yesno('Would you like to install dependencies?', default=True): - run(['util/qmk_install.sh']) + cli.run(['util/qmk_install.sh', '-y'], stdin=DEVNULL, capture_output=False) bin_ok = check_binaries() if bin_ok: |