mirror of
https://github.com/losehu/uv-k5-firmware-custom.git
synced 2025-10-23 05:54:44 +08:00
6 lines
229 B
Bash
6 lines
229 B
Bash
#!/bin/sh
|
|
rm -rf compiled
|
|
make clean
|
|
docker build -t uvk5 .
|
|
docker run --rm -v "$(pwd)/compiled-firmware:/app/compiled-firmware" uvk5 /bin/bash -c "cd /app && rm -rf compiled && make clean && make && cp *.bin compiled-firmware/"
|