aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-23 19:10:34 -0800
committerfriendica <info@friendica.com>2015-02-23 19:10:34 -0800
commit2264ad5c6ef98a63594f100f06f79bfd8668436a (patch)
tree4696059a6bea99de1e7b7291936c0b01cf0647c3
parentd29de912b439b8252efff8b644f034cf7fc7d3e2 (diff)
downloadvolse-hubzilla-2264ad5c6ef98a63594f100f06f79bfd8668436a.tar.gz
volse-hubzilla-2264ad5c6ef98a63594f100f06f79bfd8668436a.tar.bz2
volse-hubzilla-2264ad5c6ef98a63594f100f06f79bfd8668436a.zip
provide ability to link new themes/addons
-rwxr-xr-xutil/add_addon_repo9
-rwxr-xr-xutil/add_theme_repo8
-rwxr-xr-xutil/update_addon_repo24
-rwxr-xr-xutil/update_theme_repo27
4 files changed, 60 insertions, 8 deletions
diff --git a/util/add_addon_repo b/util/add_addon_repo
index 7d2b74cff..130c0a0cd 100755
--- a/util/add_addon_repo
+++ b/util/add_addon_repo
@@ -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
diff --git a/util/add_theme_repo b/util/add_theme_repo
index 5ccbccd3f..d2e4b21a5 100755
--- a/util/add_theme_repo
+++ b/util/add_theme_repo
@@ -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
diff --git a/util/update_addon_repo b/util/update_addon_repo
index 0d0cbc4a8..c6c2c4a47 100755
--- a/util/update_addon_repo
+++ b/util/update_addon_repo
@@ -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
diff --git a/util/update_theme_repo b/util/update_theme_repo
index f7b26ae34..443b26591 100755
--- a/util/update_theme_repo
+++ b/util/update_theme_repo
@@ -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
+
+