esphome-config/flash.sh
2025-01-02 18:18:44 +01:00

9 lines
315 B
Bash
Executable File

#!/bin/bash
if [ -z "$1" ]; then
echo "usage: flash.sh <config.yaml> [/dev/tty-usb-device]"
elif [ -z "$2" ]; then
podman run --rm --privileged -v "${PWD}":/config -it ghcr.io/esphome/esphome run $1
else
podman run --rm --privileged -v "${PWD}":/config --device=$2 -it ghcr.io/esphome/esphome run $1
fi