aboutsummaryrefslogblamecommitdiffstats
path: root/util/update_addon_repo
blob: c6c2c4a4701fa5998f594d2829ff44b2d8b8d6eb (plain) (tree)
1
2
3
4
5
6
7
8
9
10

            



                                 



                  



                     
 























                                                  
#!/bin/sh -f

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

cd extend/addon/$1

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

cd ../../..

filelist=(`ls extend/addon/$1`)

cd addon

for a in "${filelist[@]}" ; do
	base=`basename $a`
	if [ $base = '.git' ]; then
#		echo 'ignoring git'
		continue;
	fi
	if [ ! -d ../extend/theme/$1/$base ]; then
#		echo $a 'not a directory'
		continue;
	fi
	if [ -x $base ]; then
#		echo $base 'file exists'
		continue;
	fi

	echo linking $base 
	ln -s ../extend/theme/$1/$base $base
done