mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 18:31:02 +01:00
10 lines
383 B
Plaintext
10 lines
383 B
Plaintext
/usr/bin/env bashio
|
|
|
|
bashio::info "Running update according to defined schedule"
|
|
if bashio::config.true 'silent'; then
|
|
bashio::log.warning "Silent mode activated. Only errors will be shown. Please disable in addon options if you need to debug"
|
|
/usr/local/bin/php /var/www/html/artisan firefly:cron >/dev/null
|
|
else
|
|
/usr/local/bin/php /var/www/html/artisan firefly:cron
|
|
fi
|