git update everything

This commit is contained in:
redmatrix 2016-03-13 18:15:38 -07:00
parent cc29e27acc
commit 6729c27b77
2 changed files with 18 additions and 1 deletions

17
util/udall Executable file
View File

@ -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

View File

@ -1 +1 @@
2016-03-12.1333H
2016-03-13.1334H