diff options
author | redmatrix <git@macgirvin.com> | 2016-03-13 18:15:38 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-03-13 18:15:38 -0700 |
commit | 6729c27b771c35a3153ffcbcdef75164426bbf74 (patch) | |
tree | 9388a45bdff1581cb3c723904a180596c8e4c1ce /util | |
parent | cc29e27acc04511b943c5dcab85b1ce215ac2e49 (diff) | |
download | volse-hubzilla-6729c27b771c35a3153ffcbcdef75164426bbf74.tar.gz volse-hubzilla-6729c27b771c35a3153ffcbcdef75164426bbf74.tar.bz2 volse-hubzilla-6729c27b771c35a3153ffcbcdef75164426bbf74.zip |
git update everything
Diffstat (limited to 'util')
-rwxr-xr-x | util/udall | 17 |
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 |