mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-20 16:50:41 -04:00
allow to run additional site specific commands at the end of util/udall
This commit is contained in:
@@ -5,7 +5,7 @@ if [ ! -d .git ]; then
|
|||||||
fi
|
fi
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
if [ -d extend ] ; then
|
if [ -d extend ]; then
|
||||||
for a in theme addon widget ; do
|
for a in theme addon widget ; do
|
||||||
if [ -d extend/$a ]; then
|
if [ -d extend/$a ]; then
|
||||||
for b in `ls extend/$a` ; do
|
for b in `ls extend/$a` ; do
|
||||||
@@ -15,3 +15,8 @@ if [ -d extend ] ; then
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Allow to run additional site specific commands
|
||||||
|
if [ -f util/udall_extra ]; then
|
||||||
|
source util/udall_extra
|
||||||
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user