From 03f8ff1c80e24b521cca4ef63869bb8480c914f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Mon, 29 Jan 2024 23:52:01 +0100 Subject: [PATCH] Let's see if it writes to disk now --- qsgen2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qsgen2 b/qsgen2 index 6d7a9ea..3aeaa1c 100755 --- a/qsgen2 +++ b/qsgen2 @@ -322,13 +322,13 @@ function _pages() { if (${debug}) echo "_pages: Running engine on ${pages_in_array}" page_content=$( ${engine} ${page_content} ) - echo "${page_content}" - exit - # Replace every #pagetitle in pages_tpl if (${debug}) echo "_pages: Replacing #pagetitle in pages_tpl" pages_tpl=$( echo ${pages_tpl} | sed -e "s|#pagetitle|${page_title}|g" > /dev/null ) + #echo "${pages_tpl}" + #exit + # Replace every #tagline in pages_tpl if (${debug}) echo "_pages: Replacing tagline" pages_tpl=$( echo ${pages_tpl} | sed -e "s|#tagline|${site_tagline}|g" > /dev/null )