diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-12 21:57:06 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-12 21:57:06 -0700 |
commit | 4ca06ebd79b5258c5cb6ccb0871d98c9180f91b2 (patch) | |
tree | 6d2606957bca2ff36c1f564c611aea4272cf5a88 /util/update_addon_repo | |
parent | 018e7022817fd73e904021ecf46f2c5839da9a62 (diff) | |
parent | 19a2bdeb915ff32a0612717994b93e07a670fd2f (diff) | |
download | volse-hubzilla-4ca06ebd79b5258c5cb6ccb0871d98c9180f91b2.tar.gz volse-hubzilla-4ca06ebd79b5258c5cb6ccb0871d98c9180f91b2.tar.bz2 volse-hubzilla-4ca06ebd79b5258c5cb6ccb0871d98c9180f91b2.zip |
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Diffstat (limited to 'util/update_addon_repo')
-rwxr-xr-x | util/update_addon_repo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/update_addon_repo b/util/update_addon_repo index c6c2c4a47..42bd3a71f 100755 --- a/util/update_addon_repo +++ b/util/update_addon_repo @@ -25,7 +25,7 @@ for a in "${filelist[@]}" ; do # echo 'ignoring git' continue; fi - if [ ! -d ../extend/theme/$1/$base ]; then + if [ ! -d ../extend/addon/$1/$base ]; then # echo $a 'not a directory' continue; fi @@ -35,5 +35,5 @@ for a in "${filelist[@]}" ; do fi echo linking $base - ln -s ../extend/theme/$1/$base $base + ln -s ../extend/addon/$1/$base $base done |