forked from mirrors/qmk_firmware
ensure parallel is string
This commit is contained in:
parent
dcbfdb5cfc
commit
335dd3c5c3
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ def create_make_command(keyboard, keymap, target=None, parallel=1, silent=False,
|
|||
|
||||
if parallel > 1:
|
||||
make_cmd.append('-j')
|
||||
make_cmd.append(parallel)
|
||||
make_cmd.append(str(parallel))
|
||||
|
||||
if target:
|
||||
make_cmd.append(target)
|
||||
|
|
Loading…
Reference in a new issue