add theme directory to build script, so it adds the themes

This commit is contained in:
Scruffy Nerf
2024-01-01 13:38:42 -05:00
parent 176a50e47c
commit 9542da3eb3

View File

@@ -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