From 78cd7e48cb05e99fb2b87abcdc2255ac84d9833e Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Tue, 17 Sep 2013 01:53:14 +0200 Subject: [PATCH] List possible failing plugins --- build | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/build b/build index d9f871a..ba89ffe 100755 --- a/build +++ b/build @@ -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() {