From 613b71d23b0f65874a51f721aa0642ad569f559e Mon Sep 17 00:00:00 2001 From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Sun, 30 Apr 2023 18:08:58 -0700 Subject: [PATCH] Ignores a specific _FILE setting which doesn't actually get set to a file --- docker/env-from-file.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/env-from-file.sh b/docker/env-from-file.sh index 37535c220..b67a82c86 100644 --- a/docker/env-from-file.sh +++ b/docker/env-from-file.sh @@ -15,6 +15,10 @@ do env_name=${line%%=*} # Check if it starts with "PAPERLESS_" and ends in "_FILE" if [[ ${env_name} == PAPERLESS_*_FILE ]]; then + # This should have been named different.. + if [[ ${env_name} == "PAPERLESS_OCR_SKIP_ARCHIVE_FILE" ]]; then + continue + fi # Extract the value of the environment env_value=${line#*=}