diff options
author | Drashna Jaelre <drashna@live.com> | 2019-08-26 10:16:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-26 10:16:46 -0700 |
commit | bc86eb223378e4f83f20105f1a0ec61a2d012b78 (patch) | |
tree | e1d8766593f0f0b1e302fe52fc063760c73ab9c2 /tmk_core | |
parent | f2d9f912b1e75e6e5b492ba21be8b7ad682c470d (diff) |
Fix Typo in :flash target for missing bootloader (#6615)
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/avr.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/avr.mk b/tmk_core/avr.mk index bdda14a070..775f2a996d 100644 --- a/tmk_core/avr.mk +++ b/tmk_core/avr.mk @@ -347,5 +347,5 @@ else ifeq ($(strip $(BOOTLOADER)), USBasp) else ifeq ($(strip $(BOOTLOADER)), bootloadHID) $(call EXEC_BOOTLOADHID) else - $(PRINT_OK); $(SILENT) || printf "&(MSG_FLASH_BOOTLOADER)" + $(PRINT_OK); $(SILENT) || printf "$(MSG_FLASH_BOOTLOADER)" endif |