mirror of
https://github.com/mfulz/qmk_firmware.git
synced 2025-07-25 14:50:41 +02:00
ensure parallel is string
This commit is contained in:
parent
dcbfdb5cfc
commit
335dd3c5c3
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user