Skip to content

Commit 85980e8

Browse files
committed
Fix unescaped nested quotes
1 parent bc3357c commit 85980e8

File tree

1 file changed

+1
-1
lines changed
  • root/etc/s6-overlay/s6-rc.d/init-ldap-config

1 file changed

+1
-1
lines changed

root/etc/s6-overlay/s6-rc.d/init-ldap-config/run

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if grep -q 'REPLACEWITHFERNETKEY' /app/ldap-backend-app.py; then
3333
fi
3434
# Second, check for a cached key
3535
if [[ -z ${key} && -f ${KEY_FILE} ]]; then
36-
_key="$(normalize_key $(cat "${KEY_FILE}"))"
36+
_key="$(normalize_key $(cat \"${KEY_FILE}\"))"
3737
if test_key "${_key}"; then
3838
echo "using key from ${KEY_FILE}"
3939
key="${_key}"

0 commit comments

Comments
 (0)