aboutsummaryrefslogtreecommitdiffstats
path: root/util/update_theme_repo
blob: f7b26ae34e6fb78aa70e188612b24b1058a36c7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -f


if [ $# -ne 1 ]; then
	echo usage: $0 repository
	echo "Repositories:"
	ls extend/theme
	exit 1
fi

cd extend/theme/$1

if [ -d .git ] ; then
	git pull
fi