summaryrefslogtreecommitdiff
path: root/container/entrypoint.sh
diff options
context:
space:
mode:
authorIvan Gabaldon <igabaldon@inetol.net>2025-05-21 14:06:14 +0200
committerIvan Gabaldon <igabaldon@inetol.net>2025-05-21 15:27:26 +0200
commit9ffe23ecf302ac82c1b2ef1e23733a1729a6d92d (patch)
tree5d3c41c8dc34a0b273f1f7ef668c9a4f272ae19e /container/entrypoint.sh
parent502017b9017da3e93b9786e830b6b3ac7f9c2049 (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-xcontainer/entrypoint.sh2
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"