Skip to content

Commit

Permalink
qmk multibuild: Fix bug with Path objects (qmk#13093)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark committed Jun 3, 2021
1 parent 261d94c commit af91221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/cli/multibuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ def multibuild(cli):
)
# yapf: enable

cli.run([make_cmd, '-j', str(cli.args.parallel), '-f', makefile, 'all'], capture_output=False, stdin=DEVNULL)
cli.run([make_cmd, '-j', str(cli.args.parallel), '-f', makefile.as_posix(), 'all'], capture_output=False, stdin=DEVNULL)

0 comments on commit af91221

Please sign in to comment.