lint: replace egrep with grep -E

Starting with grep 3.8, egrep throws the following warning
   egrep: warning: egrep is obsolescent; using grep -E

Whch is annoying... so we will use grep -E
This commit is contained in:
Scott Mansell 2023-02-02 17:23:40 +13:00
parent 6669d160b1
commit e38c0a1bbd
1 changed files with 3 additions and 3 deletions

View File

@ -103,17 +103,17 @@ function java_check() {
# Loop through each modified file.
for f in ${modified_files}; do
# Filter them.
if echo "${f}" | egrep -q "[.]java$"; then
if echo "${f}" | grep -E -q "[.]java$"; then
# Copy Java files to a temporary directory
java_setup
mkdir -p $(dirname "${java_temp_dir}/${f}")
cp "${f}" "${java_temp_dir}/${f}"
continue
fi
if ! echo "${f}" | egrep -q "[.](cpp|h|mm)$"; then
if ! echo "${f}" | grep -E -q "[.](cpp|h|mm)$"; then
continue
fi
if ! echo "${f}" | egrep -q "^Source"; then
if ! echo "${f}" | grep -E -q "^Source"; then
continue
fi