provide ability to link new themes/addons

This commit is contained in:
friendica 2015-02-23 19:10:34 -08:00
parent d29de912b4
commit 2264ad5c6e
4 changed files with 60 additions and 8 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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