Skip to content

Commit

Permalink
Fix permissions on renamed ld and libtool scripts (#3053)
Browse files Browse the repository at this point in the history
Signed-off-by: Brentley Jones <[email protected]>
  • Loading branch information
brentleyjones authored Jul 9, 2024
1 parent 8edb8fd commit 768b430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xcodeproj/internal/templates/incremental_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ chmod u+w "$dest_generated_xcfilelist"

# - Keep only scripts as runnable
find "$dest/rules_xcodeproj/bazel" \
-type f \( -name "*.sh" -o -name "*.py" \) \
-type f \( -name "*.sh" -o -name "*.py" -o -name "ld" -o -name "libtool" \) \
-print0 | xargs -0 chmod u+x
find "$dest/rules_xcodeproj/bazel" \
-type f ! \( -name "swiftc" -o -name "ld" -o -name "libtool" -o -name "import_indexstores" -o -name "*.sh" -o -name "*.py" \) \
Expand Down

0 comments on commit 768b430

Please sign in to comment.