Skip to content

Commit 452c724

Browse files
committed
ios: fix bash mistake in build native mods script
1 parent d3469bf commit 452c724

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/ios-build-native-modules.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ find -E "$NODEPROJ" \
8282
find "$NODEPROJ" \
8383
-name "*.framework" -type d \
8484
-prune -exec rm -rf "{}" \;
85-
PREBUILD_DOT_NODES=`find -E "$NODEPROJ" -regex ".*/prebuilds/ios-$PREBUILD_ARCH/.*\.node$"`
86-
for DOT_NODE in "$PREBUILD_DOT_NODES"
87-
do
85+
for DOT_NODE in `find -E "$NODEPROJ" -regex ".*/prebuilds/ios-$PREBUILD_ARCH/.*\.node$"`; do
8886
preparePrebuiltModule "$DOT_NODE"
8987
done
9088

0 commit comments

Comments
 (0)