Skip to content

Commit c7c6342

Browse files
committed
Use bufferred outout when converting plists to xml
1 parent c7a21a5 commit c7c6342

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/host/src/node/cli/apple.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export async function readAndParsePlist(plistPath: string): Promise<unknown> {
8383
"Updating Info.plist files are not supported on this platform",
8484
);
8585
await spawn("plutil", ["-convert", "xml1", plistPath], {
86-
outputMode: "inherit",
86+
outputMode: "buffered",
8787
});
8888
} catch (cause) {
8989
throw new Error(`Failed to convert plist to XML: ${plistPath}`, {
@@ -323,6 +323,7 @@ export async function linkVersionedFramework({
323323
"Info.plist",
324324
);
325325
const frameworkInfo = await readFrameworkInfo(frameworkInfoPath);
326+
326327
// Update install name
327328
await spawn(
328329
"install_name_tool",

0 commit comments

Comments
 (0)