5 lines
174 B
Bash
5 lines
174 B
Bash
#!/usr/bin/env bash
|
|
# Copy esp32/main.py to the connected ESP32 as /main.py (single line, no wrap).
|
|
cd "$(dirname "$0")/.."
|
|
pipenv run mpremote fs cp esp32/main.py :/main.py
|