uv-k5-firmware-chinese-lts/compile-with-docker.bat

5 lines
193 B
Batchfile
Raw Permalink Normal View History

2024-01-13 12:00:44 +00:00
@echo on
2023-12-07 03:39:09 +00:00
docker build -t uvk5 .
2024-01-13 12:00:44 +00:00
docker run --rm -v %CD%/compiled-firmware:/app/compiled-firmware uvk5 /bin/bash -c "cd /app && make clean && make both && cp *.bin compiled-firmware/"
2023-12-08 04:25:30 +00:00
pause