mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Fix an issue where plugins that have been removed with names that end the same as plugins still in the project wouldn't be removed by the update script
This commit is contained in:
parent
eaaa31bffe
commit
17d829c8fc
1 changed files with 1 additions and 1 deletions
2
update
2
update
|
@ -216,7 +216,7 @@ fi
|
|||
[[ -f "$plugin/.git" ]] && {
|
||||
plugin_dirname="${plugin/*\/}"
|
||||
|
||||
grep 'path = ' .gitmodules | grep -oe '[^\/]*$' | grep -qe "$plugin_dirname$" || {
|
||||
grep 'path = ' .gitmodules | grep -oe '[^\/]*$' | grep -qe "^$plugin_dirname$" || {
|
||||
[[ -z "$first_found" ]] && {
|
||||
first_found=1
|
||||
printf '%s\n' "$cbg_blue $c_reset$cbg_yellow + Removing old plugins: $c_reset"
|
||||
|
|
Loading…
Reference in a new issue