diff options
author | Paolo T <tuscanhobbit@users.noreply.github.com> | 2015-03-22 16:34:40 +0100 |
---|---|---|
committer | Paolo T <tuscanhobbit@users.noreply.github.com> | 2015-03-22 16:34:40 +0100 |
commit | 82fb1ca0caaae72b77b641d22e51d5ae1b188183 (patch) | |
tree | a2ecee4e65bc80300c62b5b327965b8118117ad3 /util/add_addon_repo | |
parent | ff5c3b009fa25e87e294cd458d3de4b677270c64 (diff) | |
parent | e345d6793d5f6910dd230f661ca5d1a837b1b504 (diff) | |
download | volse-hubzilla-82fb1ca0caaae72b77b641d22e51d5ae1b188183.tar.gz volse-hubzilla-82fb1ca0caaae72b77b641d22e51d5ae1b188183.tar.bz2 volse-hubzilla-82fb1ca0caaae72b77b641d22e51d5ae1b188183.zip |
Merge pull request #8 from friendica/master
merging red master into nuvola.red
Diffstat (limited to 'util/add_addon_repo')
-rwxr-xr-x | util/add_addon_repo | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/util/add_addon_repo b/util/add_addon_repo index caefe820c..4979c06bc 100755 --- a/util/add_addon_repo +++ b/util/add_addon_repo @@ -1,6 +1,6 @@ #!/bin/sh -f -if [ $# -eq '3' ]; then +if [ $# -ne 2 ]; then echo usage: $0 repo_url nickname exit 1 fi @@ -8,29 +8,31 @@ fi mkdir -p extend/addon/$2 mkdir addon > /dev/null 2>&1 git clone $1 extend/addon/$2 -if [ $? -eq '0' ]; then +if [ $? -ne 0 ]; then exit $? fi filelist=(`ls extend/addon/$2`) + 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 |