Browse Source

[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
Ivan Gabaldon 2 days ago
parent
commit
9ffe23ecf3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      container/entrypoint.sh

+ 1 - 1
container/entrypoint.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 # shellcheck shell=dash
-set -eu
+set -u
 
 check_file() {
     local target="$1"