Combine grep arguments

This commit is contained in:
Kevin MacMartin 2024-03-03 21:52:40 -05:00
parent 5e19a7b4fc
commit 1daba09c60

2
update
View file

@ -216,7 +216,7 @@ fi
[[ -f "$plugin/.git" ]] && {
plugin_dirname="${plugin/*\/}"
grep 'path = ' .gitmodules | grep -o -e '[^\/]*$' | grep -q -e "$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"