tasmota / docker-tasmota

Docker container with a complete build environment for Tasmota using PlatformIO
78 stars 49 forks source link

fix check of platformio_override.ini #8

Closed Gifford47 closed 2 years ago

Gifford47 commented 2 years ago

if my view, the script was unable to copy the user platformio_override.ini to Tasmota/platformio_override.ini because it was no regular file. changing the test arguments helped (only check if file exists). changed "test -f" to "test -e" to only check if it exists (not if regular file)