mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 21:51:46 +00:00
11 lines
164 B
Bash
11 lines
164 B
Bash
|
set -e
|
||
|
|
||
|
pio run
|
||
|
|
||
|
echo uploading to usb1
|
||
|
pio run --upload-port /dev/ttyUSB1 -t upload &
|
||
|
|
||
|
echo uploading to usb0
|
||
|
pio run --upload-port /dev/ttyUSB0 -t upload &
|
||
|
|
||
|
wait
|