diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-17 01:53:14 +0200 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-17 01:53:14 +0200 | 
| commit | 78cd7e48cb05e99fb2b87abcdc2255ac84d9833e (patch) | |
| tree | 55870ad61ebcc6e6536891d343d24de801c8267d | |
| parent | ba1305772d6dc5939fd7fbad57108aa71ee2d158 (diff) | |
| download | vim-polyglot-78cd7e48cb05e99fb2b87abcdc2255ac84d9833e.tar.gz vim-polyglot-78cd7e48cb05e99fb2b87abcdc2255ac84d9833e.zip | |
List possible failing plugins
| -rwxr-xr-x | build | 11 | 
1 files changed, 11 insertions, 0 deletions
| @@ -35,8 +35,19 @@ extract() {        fi      done +      printf "${subdirs##, })\n"    done + +  for pack in $1; do +    name="$(printf "$pack" | cut -d ':' -f 1)" +    path="$(printf "$pack" | cut -d ':' -f 2)" +    dir="tmp/$(printf "$path" | cut -d '/' -f 2)" + +    if [ -d "$dir/plugin" ]; then +      printf "Possible error (plugin directory exists): $path\n" +    fi +  done  }  copy_dir() { | 
