summaryrefslogtreecommitdiff
path: root/rebrand.sh
diff options
context:
space:
mode:
Diffstat (limited to 'rebrand.sh')
-rwxr-xr-xrebrand.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/rebrand.sh b/rebrand.sh
index fe49821..7f937bf 100755
--- a/rebrand.sh
+++ b/rebrand.sh
@@ -21,9 +21,18 @@ function rebrand_resources {
fi
}
+function rebrand_templates {
+ echo "Rebranding app templates..."
+
+ if [ -d "${branding}/templates" ]; then
+ cp -rf "${branding}/templates" "${server_path}"
+ fi
+}
+
function main {
rebrand_assets
rebrand_resources
+ rebrand_templates
}
main