mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-06 14:55:07 +01:00
Fix: dont try to load PAPERLESS_MODEL_FILE as env from file (#8040)
This commit is contained in:
parent
ff1639d58b
commit
e775b6346a
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ do
|
|||
# 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
|
||||
if [[ ${env_name} == "PAPERLESS_OCR_SKIP_ARCHIVE_FILE" || ${env_name} == "PAPERLESS_MODEL_FILE" ]]; then
|
||||
continue
|
||||
fi
|
||||
# Extract the value of the environment
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue