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
|
for a in "${filelist[@]}" ; do
|
||||||
base=`basename $a`
|
base=`basename $a`
|
||||||
if [ $base = '.git' ]; then
|
if [ $base = '.git' ]; then
|
||||||
echo 'ignoring git'
|
# echo 'ignoring git'
|
||||||
continue;
|
continue;
|
||||||
fi
|
fi
|
||||||
if [ ! -d ../extend/addon/$2/$base ]; then
|
if [ ! -d ../extend/addon/$2/$base ]; then
|
||||||
echo $a 'not a directory'
|
# echo $a 'not a directory'
|
||||||
continue;
|
continue;
|
||||||
fi
|
fi
|
||||||
echo linking $base
|
|
||||||
if [ -x $base ]; then
|
if [ -x $base ]; then
|
||||||
echo $base 'file exists'
|
# echo $base 'file exists'
|
||||||
continue;
|
continue;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo linking $base
|
||||||
|
|
||||||
ln -s ../extend/addon/$2/$base $base
|
ln -s ../extend/addon/$2/$base $base
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -18,19 +18,19 @@ cd view/theme
|
|||||||
for a in "${filelist[@]}" ; do
|
for a in "${filelist[@]}" ; do
|
||||||
base=`basename $a`
|
base=`basename $a`
|
||||||
if [ $base = '.git' ]; then
|
if [ $base = '.git' ]; then
|
||||||
echo 'ignoring git'
|
# echo 'ignoring git'
|
||||||
continue;
|
continue;
|
||||||
fi
|
fi
|
||||||
if [ ! -d ../../extend/theme/$2/$base ]; then
|
if [ ! -d ../../extend/theme/$2/$base ]; then
|
||||||
echo $a 'not a directory'
|
# echo $a 'not a directory'
|
||||||
continue;
|
continue;
|
||||||
fi
|
fi
|
||||||
echo linking $base
|
|
||||||
if [ -x $base ]; then
|
if [ -x $base ]; then
|
||||||
echo $base 'file exists'
|
# echo $base 'file exists'
|
||||||
continue;
|
continue;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo linking $base
|
||||||
ln -s ../../extend/theme/$2/$base $base
|
ln -s ../../extend/theme/$2/$base $base
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -13,3 +13,27 @@ if [ -d .git ] ; then
|
|||||||
git pull
|
git pull
|
||||||
fi
|
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
|
if [ -d .git ] ; then
|
||||||
git pull
|
git pull
|
||||||
fi
|
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