Files
go2rtc/build/hassio/run.sh
T
2022-08-24 12:49:59 +03:00

15 lines
164 B
Bash

#!/usr/bin/with-contenv bashio
set +e
cd /config
while true; do
if [ -x go2rtc ]; then
./go2rtc
else
/app/go2rtc
fi
sleep 5
done