From 00b04c2e860dfbb0894ab346f05ca52a674c05d4 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:02:27 -0700 Subject: [PATCH] Escape the secret key when writing it to the env file (#6243) --- install-paperless-ngx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-paperless-ngx.sh b/install-paperless-ngx.sh index 4e8181a51..84e55d3ee 100755 --- a/install-paperless-ngx.sh +++ b/install-paperless-ngx.sh @@ -335,7 +335,7 @@ read -r -a OCR_LANGUAGES_ARRAY <<< "${_split_langs}" fi echo "PAPERLESS_TIME_ZONE=$TIME_ZONE" echo "PAPERLESS_OCR_LANGUAGE=$OCR_LANGUAGE" - echo "PAPERLESS_SECRET_KEY=$SECRET_KEY" + echo "PAPERLESS_SECRET_KEY='$SECRET_KEY'" if [[ ! ${DEFAULT_LANGUAGES[*]} =~ ${OCR_LANGUAGES_ARRAY[*]} ]] ; then echo "PAPERLESS_OCR_LANGUAGES=${OCR_LANGUAGES_ARRAY[*]}" fi