aboutsummaryrefslogtreecommitdiffstats
path: root/util/udall
blob: 44f37e86ef2ae07082cda01e415a11514da50463 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env 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 extend/$a ]; then
			for b in  `ls extend/$a` ; do
				echo Updating $b
				'util/update_'$a'_repo' $b
			done
		fi
	done
fi