From a72ec7861e65f6cc11a9f2761e041126586eebc7 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Thu, 2 Sep 2021 08:24:03 +0200 Subject: [PATCH] forgot to escape the sed strings, fixed --- macros/pass3_install-config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macros/pass3_install-config.json b/macros/pass3_install-config.json index d4acbeb..ee23bc1 100644 --- a/macros/pass3_install-config.json +++ b/macros/pass3_install-config.json @@ -1,5 +1,5 @@ { - "DOMAIN_NAME":["exec","sed --quiet "/domain_name=/s/.*=//p" config/names.conf"], - "CONTENT_DIR":["exec","sed --quiet "/threadr_home=/s/.*=//p" config/names.conf"], + "DOMAIN_NAME":["exec","sed --quiet \"/domain_name=/s/.*=//p\" config/names.conf"], + "CONTENT_DIR":["exec","sed --quiet \"/threadr_home=/s/.*=//p\" config/names.conf"], "ABOUT_PAGE":["file","config/templates/about.template"] }