aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-03-25 19:47:17 +0000
committerMario <mario@mariovavti.com>2024-03-25 21:51:49 +0000
commit0fee7804fbfa80764e10a445a8e9ca9610b6b49c (patch)
treea3b0009daa683973af1f8ffd3264504bb3657c9c
parent4002dbaa8b8f88e7cf1b53517d15a2ae03f7fa3a (diff)
downloadvolse-hubzilla-0fee7804fbfa80764e10a445a8e9ca9610b6b49c.tar.gz
volse-hubzilla-0fee7804fbfa80764e10a445a8e9ca9610b6b49c.tar.bz2
volse-hubzilla-0fee7804fbfa80764e10a445a8e9ca9610b6b49c.zip
allow to run additional site specific commands at the end of util/udall
(cherry picked from commit c052b7fa9982e82fa25fe0e84ee3462da30ac157)
-rwxr-xr-xutil/udall7
1 files changed, 6 insertions, 1 deletions
diff --git a/util/udall b/util/udall
index 44f37e86e..50ef56bfe 100755
--- a/util/udall
+++ b/util/udall
@@ -5,7 +5,7 @@ if [ ! -d .git ]; then
fi
git pull
-if [ -d extend ] ; then
+if [ -d extend ]; then
for a in theme addon widget ; do
if [ -d extend/$a ]; then
for b in `ls extend/$a` ; do
@@ -15,3 +15,8 @@ if [ -d extend ] ; then
fi
done
fi
+
+# Allow to run additional site specific commands
+if [ -f util/udall_extra ]; then
+ source util/udall_extra
+fi