From 27ee806f3a2f0c3fd4e9c24b1fb2bac1d9555b15 Mon Sep 17 00:00:00 2001 From: Atlas Cove Date: Sun, 19 Feb 2023 01:18:26 +0000 Subject: [PATCH] Added sitemap gen to render.sh --- render.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/render.sh b/render.sh index d2bd515..a7aca23 100755 --- a/render.sh +++ b/render.sh @@ -1,6 +1,6 @@ #!/bin/bash # render.sh: part of the tape-and-string framework. -# v3.4-p5 +# v3.4-p6 #B: Load enable -f /usr/lib/bash/csv csv declare -A title @@ -71,12 +71,17 @@ function other { inf "Copying other files..." cp -rv 'in'/* out/ } +function sitemap { + inf "Generating Sitemap..." + ./gensimap.sh +} function all { load_title dirs docs sass other + sitemap } function info { load_title @@ -124,6 +129,7 @@ case $1 in other) other;; rest) other;; info) info;; + sitemap) sitemap;; vall) info; all;; all) all;; *) all;;