mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-15 22:12:20 +00:00
Meta: Run find in the current dir
macOS's find requires a leading search scope. Without this change this lint step fails.
This commit is contained in:
parent
19bd302f6a
commit
a984545a94
Notes:
sideshowbarker
2024-07-18 01:36:51 +09:00
Author: https://github.com/thislooksfun
Commit: a984545a94
Pull-request: https://github.com/SerenityOS/serenity/pull/10652
Reviewed-by: https://github.com/BenWiederhake ✅
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ set -eo pipefail
|
|||
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
||||
cd "$script_path/.."
|
||||
|
||||
ALL_ENDPOINTS=$(find \( -name Toolchain -o -name Build -o -name .git -o -name Ports \) -prune -o -name '*.ipc' -print0 | xargs -0 grep -E '^endpoint ' | sort -k4 -n)
|
||||
ALL_ENDPOINTS=$(find . \( -name Toolchain -o -name Build -o -name .git -o -name Ports \) -prune -o -name '*.ipc' -print0 | xargs -0 grep -E '^endpoint ' | sort -k4 -n)
|
||||
|
||||
BAD_ENDPOINTS=$(echo "${ALL_ENDPOINTS}" | cut -d' ' -f4 | uniq -d)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue