mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 00:29:15 +00:00
Meta: Add a check to ensure grep -P stays gone
grep -P does not work on macOS, but grep -E does.
This commit is contained in:
parent
a984545a94
commit
03494ed6ba
Notes:
sideshowbarker
2024-07-18 01:36:47 +09:00
Author: https://github.com/thislooksfun
Commit: 03494ed6ba
Pull-request: https://github.com/SerenityOS/serenity/pull/10652
Reviewed-by: https://github.com/BenWiederhake ✅
1 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,15 @@ if (( ${#files[@]} )); then
|
|||
fi
|
||||
|
||||
shellcheck "${files[@]}"
|
||||
|
||||
for file in "${files[@]}"; do
|
||||
if (< "$file" grep -qE "grep [^|);]*-[^- ]*P"); then
|
||||
# '\x2D' is the unicode escape sequence for '-'. This is used so
|
||||
# that this script does not flag itself for containing grep dash P.
|
||||
echo -e "The script '$file' contains 'grep \x2DP', which is not supported on macOS. Please use grep -E instead."
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
else
|
||||
echo "No .sh files to check."
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue