Skip to content

Commit f7ef72e

Browse files
committed
Use a non-ferric specific temp directory when creating universal binaries
1 parent e87cdf4 commit f7ef72e

File tree

1 file changed

+1
-1
lines changed
  • packages/host/src/node/prebuilds

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export async function createUniversalAppleLibrary(libraryPaths: string[]) {
162162
);
163163
const [filename] = filenames;
164164
const lipoParentPath = fs.realpathSync(
165-
fs.mkdtempSync(path.join(os.tmpdir(), "ferric-lipo-output-")),
165+
fs.mkdtempSync(path.join(os.tmpdir(), "node-api-lipo-output-")),
166166
);
167167
const outputPath = path.join(lipoParentPath, filename);
168168
await spawn("lipo", ["-create", "-output", outputPath, ...libraryPaths], {

0 commit comments

Comments
 (0)