Ver Fonte

`qmk multibuild`: Fix bug with Path objects (#13093)

Ryan há 4 anos atrás
pai
commit
af91221ddb
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      lib/python/qmk/cli/multibuild.py

+ 1 - 1
lib/python/qmk/cli/multibuild.py

@@ -76,4 +76,4 @@ all: {keyboard_safe}_binary
             )
             # 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)