mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 00:16:41 +06:00
Avoid path issues with qmk flash
on Windows (#24130)
This commit is contained in:
parent
522bf1daf2
commit
63ef6516d3
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user