Skip to content

Commit 653e9f2

Browse files
committed
Fix wrong continuation characters
1 parent b4b7661 commit 653e9f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/build-script-impl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3191,8 +3191,8 @@ for host in "${ALL_HOSTS[@]}"; do
31913191
# 2) that library is copied from the Xcode installation,
31923192
# and it is already stripped
31933193
find "${CURRENT_INSTALL_DIR}${CURRENT_PREFIX}/" \
3194-
'(' -perm -0111 -or -name "*.a" ')' \|
3195-
-not -name 'libclang_rt.tvossim.a' \|
3194+
'(' -perm -0111 -or -name "*.a" ')' \
3195+
-not -name 'libclang_rt.tvossim.a' \
31963196
-type f -print | \
31973197
xargs -n 1 -P ${BUILD_JOBS} $(xcrun_find_tool strip) -S
31983198

0 commit comments

Comments
 (0)