aboutsummaryrefslogtreecommitdiffstats
path: root/util/udall
diff options
context:
space:
mode:
authorjeroenpraat <jeroenpraat@xs4all.nl>2016-03-14 15:46:57 +0100
committerjeroenpraat <jeroenpraat@xs4all.nl>2016-03-14 15:46:57 +0100
commitb8e8517725df6924c333e0c2c7c21a2696de4f25 (patch)
tree16851e62950a75f043756f8d59183937831bc104 /util/udall
parentdef04549529d34c6fbe9c7a2396dad7909859953 (diff)
parent2f5862713e2fb959134c2de23ca4ef9907912030 (diff)
downloadvolse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.tar.gz
volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.tar.bz2
volse-hubzilla-b8e8517725df6924c333e0c2c7c21a2696de4f25.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'util/udall')
-rwxr-xr-xutil/udall17
1 files changed, 17 insertions, 0 deletions
diff --git a/util/udall b/util/udall
new file mode 100755
index 000000000..d1ff1c482
--- /dev/null
+++ b/util/udall
@@ -0,0 +1,17 @@
+#!/bin/bash
+if [ ! -d .git ]; then
+ echo Unable to update `pwd`
+ exit
+fi
+git pull
+
+if [ -d extend ] ; then
+ for a in theme addon widget ; do
+ if [ -d $a ]; then
+ for b in `ls extend/$a` ; do
+ echo Updating $b
+ 'util/update_'$a'_repo' $b
+ done
+ fi
+ done
+fi