From 9ffe23ecf302ac82c1b2ef1e23733a1729a6d92d Mon Sep 17 00:00:00 2001 From: Ivan Gabaldon Date: Wed, 21 May 2025 14:06:14 +0200 Subject: [PATCH] [mod] container: remove -e flag Temporarily remove the -e flag from set to prevent entrypoint.sh from stopping execution if any command returns a non-zero status. This doesn't solve anything but relaxes the script checks. Related https://github.com/searxng/searxng/issues/4818 --- container/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/entrypoint.sh b/container/entrypoint.sh index 775fc8a2a..8fbdb6947 100755 --- a/container/entrypoint.sh +++ b/container/entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/sh # shellcheck shell=dash -set -eu +set -u check_file() { local target="$1"