Fix qmk setup on windows

This commit is contained in:
skullY
2020-10-06 19:04:13 -07:00
committed by Zach White
parent b36c53a249
commit 9fdee68e7f
+1 -1
View File
@@ -80,7 +80,7 @@ def setup(cli):
# Run `qmk_firmware/bin/qmk doctor` to check the rest of the environment out
qmk_bin = cli.args.home / 'bin/qmk'
doctor_cmd = [sys.executable, qmk_bin, 'doctor']
doctor_cmd = [sys.executable, qmk_bin.as_posix(), 'doctor']
if cli.args.yes:
doctor_cmd.append('--yes')