diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-05-21 14:06:14 +0200 |
|---|---|---|
| committer | Ivan Gabaldon <igabaldon@inetol.net> | 2025-05-21 15:27:26 +0200 |
| commit | 9ffe23ecf302ac82c1b2ef1e23733a1729a6d92d (patch) | |
| tree | 5d3c41c8dc34a0b273f1f7ef668c9a4f272ae19e /container/entrypoint.sh | |
| parent | 502017b9017da3e93b9786e830b6b3ac7f9c2049 (diff) | |
[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
Diffstat (limited to 'container/entrypoint.sh')
| -rwxr-xr-x | container/entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" |