summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2025-11-17 02:06:59 +0000
committerGitHub <noreply@github.com>2025-11-17 02:06:59 +0000
commitbb2ca21647d0d78e3cb4512a8a5974a324404fed (patch)
tree183c8fb4efb39752bc23a3b92ee49d104a1095a1
parented343ddad4832a0a48c8ad794e949a595dcf3cfb (diff)
Fix detection of hid bootloader flashing tool (#25790)
-rw-r--r--lib/python/qmk/flashers.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/flashers.py b/lib/python/qmk/flashers.py
index 22d9133d65..b70b5fb035 100644
--- a/lib/python/qmk/flashers.py
+++ b/lib/python/qmk/flashers.py
@@ -153,6 +153,7 @@ def _flash_atmel_dfu(mcu, file):
153 153
154 154
155def _flash_hid_bootloader(mcu, details, file): 155def _flash_hid_bootloader(mcu, details, file):
156 cmd = None
156 if details == 'halfkay': 157 if details == 'halfkay':
157 if shutil.which('teensy-loader-cli'): 158 if shutil.which('teensy-loader-cli'):
158 cmd = 'teensy-loader-cli' 159 cmd = 'teensy-loader-cli'