mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:07:45 +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
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ set -eo pipefail
|
||||||
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
||||||
cd "$script_path/.."
|
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)
|
BAD_ENDPOINTS=$(echo "${ALL_ENDPOINTS}" | cut -d' ' -f4 | uniq -d)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue