From e4b393bcf763e25e599676c585d75736eeaaec02 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 14 Feb 2022 17:16:44 +0100 Subject: [PATCH] Update cronupdate --- fireflyiii/rootfs/templates/cronupdate | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fireflyiii/rootfs/templates/cronupdate b/fireflyiii/rootfs/templates/cronupdate index c12e5abd3..2d592fa0a 100644 --- a/fireflyiii/rootfs/templates/cronupdate +++ b/fireflyiii/rootfs/templates/cronupdate @@ -1,11 +1,11 @@ #!/usr/bin/env bashio ( -bashio::log.info "Running update according to defined schedule" > /dev/stdout +bashio::log.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" > /dev/stdout - /usr/local/bin/php /var/www/html/artisan firefly:cron >/dev/null 2> /dev/stdout + 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 > /dev/stdout 2> /dev/stdout + /usr/local/bin/php /var/www/html/artisan firefly:cron fi ) &>/proc/1/fd/1