Meta: Remove SerenityOS components not needed for Ladybird

This commit is contained in:
Andrew Kaster
2024-05-30 13:19:35 -06:00
committed by Andreas Kling
parent 44bb6e8390
commit dd1fbd3513
5633 changed files with 5 additions and 526322 deletions

View File

@@ -7,9 +7,9 @@ cd "$script_path/.."
if [ "$(uname -s)" = "Darwin" ]; then
# MacOS's find does not support '-executable' OR '-perm /mode'.
BAD_FILES=$(find Base/etc/ Base/res/ Base/www/ -type f -perm +111)
BAD_FILES=$(find Base/res/ -type f -perm +111)
else
BAD_FILES=$(find Base/etc/ Base/res/ Base/www/ -type f -executable)
BAD_FILES=$(find Base/res/ -type f -executable)
fi
if [ -n "${BAD_FILES}" ]