From 732b5052b4a60db5e9437a62ad8e4a9ac70b2868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Mon, 12 Feb 2024 20:33:51 +0100 Subject: [PATCH] Update debug variable in qsgen2 script The debug variable in the qsgen2 script was updated from true to false in the _pages() function and from false to true in the _blog_index() function. --- qsgen2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qsgen2 b/qsgen2 index 82877b4..35bbde5 100755 --- a/qsgen2 +++ b/qsgen2 @@ -467,7 +467,7 @@ function _pages() { local debug=true else # If you want to debug this function only, set this to true - local debug=true + local debug=false fi # Load the cache for Pages @@ -891,7 +891,7 @@ function _blog_index() { local debug=true else # If you want to debug this function only, set this to true - local debug=false + local debug=true fi # This function generates the /blog/index.html file that gets its data from _blog_list_for_index()