logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 63ef6516d31149a01df1694907425a99e06e8bcc
parent 522bf1daf25222fc9cc88a906d2b726e447909ce
Author: Joel Challis <git@zvecr.com>
Date:   Wed, 17 Jul 2024 20:31:18 +0100

Avoid path issues with `qmk flash` on Windows (#24130)


Diffstat:

Mlib/python/qmk/flashers.py2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/python/qmk/flashers.py b/lib/python/qmk/flashers.py @@ -206,6 +206,8 @@ def _flash_uf2(file): def flasher(mcu, file): + # Avoid "expected string or bytes-like object, got 'WindowsPath" issues + file = file.as_posix() bl, details = _find_bootloader() # Add a small sleep to avoid race conditions time.sleep(1)