mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 04:53:51 -05:00
List possible failing plugins
This commit is contained in:
11
build
11
build
@@ -35,8 +35,19 @@ extract() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
printf "${subdirs##, })\n"
|
printf "${subdirs##, })\n"
|
||||||
done
|
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() {
|
copy_dir() {
|
||||||
|
|||||||
Reference in New Issue
Block a user