Browse Source

Append user variables to the end of make command (#20177)

Albert Y 3 years ago
parent
commit
47a51fda5d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/python/qmk/commands.py

+ 3 - 3
lib/python/qmk/commands.py

@@ -178,9 +178,6 @@ def compile_configurator_json(user_keymap, bootloader=None, parallel=1, clean=Fa
     if bootloader:
         make_command.append(bootloader)
 
-    for key, value in env_vars.items():
-        make_command.append(f'{key}={value}')
-
     make_command.extend([
         f'KEYBOARD={user_keymap["keyboard"]}',
         f'KEYMAP={user_keymap["keymap"]}',
@@ -201,6 +198,9 @@ def compile_configurator_json(user_keymap, bootloader=None, parallel=1, clean=Fa
         'QMK_BIN="qmk"',
     ])
 
+    for key, value in env_vars.items():
+        make_command.append(f'{key}={value}')
+
     return make_command