Skip to content

Commit

Permalink
checks/check-built-plugins.sh: Use grep -E instead of egrep.
Browse files Browse the repository at this point in the history
Fedora 39 has feelings about this:

```
egrep: warning: egrep is obsolescent; using grep -E
```
  • Loading branch information
octo committed Dec 21, 2023
1 parent bac09b5 commit e4fdf10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks/check-built-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

declare -A want
if [[ $# -ge 1 ]]; then
for p in $(egrep -v '^ *($|#)' "${1}"); do
for p in $(grep -E -v '^ *($|#)' "${1}"); do
want["${p}"]=1
done
else
Expand Down

0 comments on commit e4fdf10

Please sign in to comment.