provide ability to link new themes/addons
This commit is contained in:
parent
d29de912b4
commit
2264ad5c6e
@ -18,19 +18,20 @@ cd addon
|
||||
for a in "${filelist[@]}" ; do
|
||||
base=`basename $a`
|
||||
if [ $base = '.git' ]; then
|
||||
echo 'ignoring git'
|
||||
# echo 'ignoring git'
|
||||
continue;
|
||||
fi
|
||||
if [ ! -d ../extend/addon/$2/$base ]; then
|
||||
echo $a 'not a directory'
|
||||
# echo $a 'not a directory'
|
||||
continue;
|
||||
fi
|
||||
echo linking $base
|
||||
if [ -x $base ]; then
|
||||
echo $base 'file exists'
|
||||
# echo $base 'file exists'
|
||||
continue;
|
||||
fi
|
||||
|
||||
echo linking $base
|
||||
|
||||
ln -s ../extend/addon/$2/$base $base
|
||||
done
|
||||
|
||||
|
@ -18,19 +18,19 @@ cd view/theme
|
||||
for a in "${filelist[@]}" ; do
|
||||
base=`basename $a`
|
||||
if [ $base = '.git' ]; then
|
||||
echo 'ignoring git'
|
||||
# echo 'ignoring git'
|
||||
continue;
|
||||
fi
|
||||
if [ ! -d ../../extend/theme/$2/$base ]; then
|
||||
echo $a 'not a directory'
|
||||
# echo $a 'not a directory'
|
||||
continue;
|
||||
fi
|
||||
echo linking $base
|
||||
if [ -x $base ]; then
|
||||
echo $base 'file exists'
|
||||
# echo $base 'file exists'
|
||||
continue;
|
||||
fi
|
||||
|
||||
echo linking $base
|
||||
ln -s ../../extend/theme/$2/$base $base
|
||||
done
|
||||
|
||||
|
@ -13,3 +13,27 @@ 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
|
||||
|
@ -13,3 +13,30 @@ cd extend/theme/$1
|
||||
if [ -d .git ] ; then
|
||||
git pull
|
||||
fi
|
||||
|
||||
cd ../../..
|
||||
|
||||
filelist=(`ls extend/theme/$1`)
|
||||
|
||||
cd view/theme
|
||||
|
||||
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
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user