List possible failing plugins

This commit is contained in:
Adam Stankiewicz 2013-09-17 01:53:14 +02:00
parent ba1305772d
commit 78cd7e48cb

11
build
View File

@ -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() {