1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

framework: fix grep call in check_files hook

Reported by:		dch
This commit is contained in:
Tobias C. Berner 2022-11-16 06:16:46 +01:00
parent 31518129c6
commit 30aaa5ae3f

View File

@ -17,7 +17,7 @@ if [ $? -eq 0 ] ; then
category=$(echo "${newish_file}" | awk -F '/' '{print $1}')
port=$(echo "${newish_file}" | awk -F '/' '{print $2}')
file=$(echo "${newish_file}" | awk -F '/' '{print $3}')
valid=$(echo "${file}" | grep -q '^((Makefile|distinfo|pkg-)(.*))|(.*\.mk)$')
valid=$(echo "${file}" | grep -Eq '^((Makefile|distinfo|pkg-)(.*))|(.*\.mk)$')
if [ $? -ne 0 ] ; then
echo "[pre-commit] ERROR: invalid file '${file}' in '${category}/${port}'"
status=1