Files
uv-k5-firmware-custom/compile-with-docker.bat
wu58430 535f9e2a8c 128
2024-06-06 13:27:09 +08:00

6 lines
221 B
Batchfile

@echo on
make clean
docker build -t uvk5 .
docker run --rm -v %CD%\compiled-firmware:/app/compiled-firmware uvk5 /bin/bash -c "cd /app &&rm -rf compiled&& make clean && make full&& cp *.bin compiled-firmware/"
pause