From 3e79b38cf9ad3b19e5a0a63297e33708acad32e3 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 29 Mar 2020 10:26:24 +0200 Subject: [PATCH] Use double quotes --- sbin/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/entrypoint.sh b/sbin/entrypoint.sh index 91f48b7..4e4af2f 100755 --- a/sbin/entrypoint.sh +++ b/sbin/entrypoint.sh @@ -53,8 +53,8 @@ setup_app_ini() { echo "-----> Using crudini to setup configuration" - crudini --set "$app_ini" '' APP_NAME "${APP_NAME}" - crudini --set "$app_ini" '' RUN_MODE "${RUN_MODE}" + crudini --set "$app_ini" "" APP_NAME "${APP_NAME}" + crudini --set "$app_ini" "" RUN_MODE "${RUN_MODE}" crudini --set "$app_ini" ui DEFAULT_THEME "${GITEA_THEME}"