From fe845f91c889a700da553bfca2465da8a99ddb22 Mon Sep 17 00:00:00 2001 From: Rodolfo Berrios <20590102+rodber@users.noreply.github.com> Date: Sat, 7 Jan 2023 14:00:15 -0300 Subject: [PATCH] ignore error --- scripts/system/cron--run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/cron--run.sh b/scripts/system/cron--run.sh index 08ec0c5..6bde17a 100755 --- a/scripts/system/cron--run.sh +++ b/scripts/system/cron--run.sh @@ -2,5 +2,5 @@ set -e while IFS= read -r ID; do echo "🆔 $ID" - docker exec --user www-data $ID app/bin/legacy -C cron + docker exec --user www-data $ID app/bin/legacy -C cron || true done <<<"$(docker ps | grep "chevereto:" | awk '{ print $1 }')"