Avoid path issues with qmk flash
on Windows (#24130)
This commit is contained in:
parent
522bf1daf2
commit
63ef6516d3
1 changed files with 2 additions and 0 deletions
|
@ -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 a new issue