This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/util/udall
2018-05-12 09:58:19 -07:00

18 lines
278 B
Bash
Executable File

#!/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 $a ]; then
for b in `ls extend/$a` ; do
echo Updating $b
'util/update_'$a'_repo' $b
done
fi
done
fi