don't use sys.executable when running qmk doctor

This commit is contained in:
Zach White
2021-03-27 17:02:04 -07:00
parent 8f5b8e83c0
commit 840c791cc8
+1 -1
View File
@@ -90,7 +90,7 @@ def setup(cli):
cli.write_config_option('user', 'qmk_home')
# Run `qmk doctor` to check the rest of the environment out
doctor_command = [sys.executable, sys.argv[0], 'doctor']
doctor_command = [sys.argv[0], 'doctor']
if cli.args.no:
doctor_command.append('--no')