diff options
Diffstat (limited to 'util/add_addon_repo')
-rwxr-xr-x | util/add_addon_repo | 9 |
1 files changed, 5 insertions, 4 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 |