Skip to content

Commit 62eee7b

Browse files
fix: pass directorySymlinkType to fs.symlink
1 parent 86678f0 commit 62eee7b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/plugins/marketplace.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ function mockRemoteMarketplaceCloneWithOutsideSymlink(params: {
165165
await fs.mkdir(path.dirname(path.join(repoDir as string, params.symlinkPath)), {
166166
recursive: true,
167167
});
168-
await fs.symlink(outsideDir, path.join(repoDir as string, params.symlinkPath));
168+
await fs.symlink(outsideDir, path.join(repoDir as string, params.symlinkPath), directorySymlinkType);
169169
return { code: 0, stdout: "", stderr: "", killed: false };
170170
});
171171
}

0 commit comments

Comments
 (0)