From 9542da3eb3b5dc97a4a04bea5a45455e0fcceee7 Mon Sep 17 00:00:00 2001 From: Scruffy Nerf Date: Mon, 1 Jan 2024 13:38:42 -0500 Subject: [PATCH] add theme directory to build script, so it adds the themes --- build_site.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_site.sh b/build_site.sh index 463ee69..93857f9 100755 --- a/build_site.sh +++ b/build_site.sh @@ -69,4 +69,6 @@ buildPlugin() find ./plugins -mindepth 1 -name *.yml | while read file; do buildPlugin "$file" +find ./themes -mindepth 1 -name *.yml | while read file; do + buildPlugin "$file" done