diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-12 21:35:30 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-12 21:35:30 -0700 |
commit | a67ada15f3d5574fbf9888816a74945170195044 (patch) | |
tree | 42f10d30ef41245d9f296bd740b32c0326861d74 /util/update_addon_repo | |
parent | 1e0e812440b8b87c39a88692e39eb0baca736b6e (diff) | |
download | volse-hubzilla-a67ada15f3d5574fbf9888816a74945170195044.tar.gz volse-hubzilla-a67ada15f3d5574fbf9888816a74945170195044.tar.bz2 volse-hubzilla-a67ada15f3d5574fbf9888816a74945170195044.zip |
repo updaters
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 |