Skip to content

Commit e5d1e7f

Browse files
committed
Use path.join in symlink targets
1 parent b09267e commit e5d1e7f

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ async function createVersionedFramework({
167167
await fs.promises.symlink(VERSIONED_FRAMEWORK_VERSION, currentLink);
168168

169169
await fs.promises.symlink(
170-
"Versions/Current/Resources",
170+
path.join("Versions", "Current", "Resources"),
171171
path.join(frameworkPath, "Resources"),
172172
);
173173
await fs.promises.symlink(
174-
"Versions/Current/Headers",
174+
path.join("Versions", "Current", "Headers"),
175175
path.join(frameworkPath, "Headers"),
176176
);
177177
await fs.promises.symlink(

0 commit comments

Comments
 (0)