Browse Source

ensure parallel is string

Zach White 5 years ago
parent
commit
335dd3c5c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/qmk/commands.py

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

@@ -96,7 +96,7 @@ def create_make_command(keyboard, keymap, target=None, parallel=1, silent=False,
 
 
     if parallel > 1:
     if parallel > 1:
         make_cmd.append('-j')
         make_cmd.append('-j')
-        make_cmd.append(parallel)
+        make_cmd.append(str(parallel))
 
 
     if target:
     if target:
         make_cmd.append(target)
         make_cmd.append(target)