Skip to content

Commit 4ac99f9

Browse files
committed
worthy improvements
1 parent 33a32fc commit 4ac99f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_nativescript.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ if [[ "$TARGET_ENGINE" == "none" ]]; then
185185

186186
# We adhere to the prebuilds standard as described here:
187187
# https://github.com/callstackincubator/react-native-node-api/blob/9b231c14459b62d7df33360f930a00343d8c46e6/docs/PREBUILDS.md
188-
OUTPUT_DIR="packages/ios/build/Release/NativeScript.apple.node"
188+
OUTPUT_DIR="packages/ios/build/$CONFIG_BUILD/NativeScript.apple.node"
189189
rm -rf $OUTPUT_DIR
190190
deno run -A ./scripts/build_xcframework.mts --output "$OUTPUT_DIR" ${XCFRAMEWORKS[@]}
191191
else

scripts/build_xcframework.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $ deno run -A ./scripts/build_xcframework.mts --output packages/ios/build/Releas
8484
});
8585
} catch (error) {
8686
const errorMessage = error instanceof Error ? error.message : "<unknown>";
87-
console.error(`Failed to assemble XCFramework: ${errorMessage}`);
87+
console.error(`Failed to assemble XCFramework: ${errorMessage}`, error);
8888
process.exit(1);
8989
}
9090

0 commit comments

Comments
 (0)