mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-18 23:23:53 +08:00
10 lines
79 B
Bash
Executable File
10 lines
79 B
Bash
Executable File
#!/bin/bash
|
|
cd ../board
|
|
make clean
|
|
|
|
while true; do
|
|
make ota
|
|
sleep 10
|
|
done
|
|
|