15 lines
155 B
Bash
Executable File
15 lines
155 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# first device connected
|
|
|
|
idf.py -DROLE=SENDER build
|
|
|
|
cp build/wellhub.bin /var/www/esp_ota
|
|
|
|
ret_val=$?
|
|
|
|
if (($ret_val != 0)); then
|
|
exit
|
|
fi
|
|
|