From 06f478a9a2064b78997085136e0ef06b20c1d1c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Mon, 29 Jan 2024 23:53:15 +0100 Subject: [PATCH] sed: -e expression #1, char 40: unterminated s command --- qsgen2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qsgen2 b/qsgen2 index 3aeaa1c..1450660 100755 --- a/qsgen2 +++ b/qsgen2 @@ -339,7 +339,7 @@ function _pages() { # Insert page_content into pages_tpl by replacing the BODY tag present there if (${debug}) echo "_pages: Replacing BODY with page_content in pages_tpl" - pages_tpl=$( echo ${pages_tpl} | sed -e "s|BODY|${page_content}|g" > /dev/null ) + pages_tpl=$( echo ${pages_tpl} | sed -e 's|BODY|${page_content}|g' > /dev/null ) # Run a cleanup if in case something was left out _cleanup ${pages_tpl}