logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 14c7164b01d2ec925c37de2a205286807d7681e2
parent 7fe168a8ed1577be2f75ec0f0a43a3997a7df199
Author: QMK Bot <hello@qmk.fm>
Date:   Sat,  8 Feb 2025 12:18:11 +0000

Merge remote-tracking branch 'origin/master' into develop

Diffstat:

Mlib/python/qmk/cli/format/text.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python/qmk/cli/format/text.py b/lib/python/qmk/cli/format/text.py @@ -18,7 +18,7 @@ def _get_chunks(it, size): def dos2unix_run(files): """Spawn multiple dos2unix subprocess avoiding too long commands on formatting everything """ - for chunk in _get_chunks(files, 10): + for chunk in _get_chunks([normpath(file).as_posix() for file in files], 10): dos2unix = cli.run(['dos2unix', *chunk]) if dos2unix.returncode: