mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-04-21 13:37:17 +00:00
fix(evals): use junction instead of dir symlink for Windows compatibility
This commit is contained in:
parent
0fc23b1242
commit
7cde31fbd7
1 changed files with 1 additions and 1 deletions
|
|
@ -349,7 +349,7 @@ export function symlinkNodeModules(testDir: string) {
|
|||
fs.existsSync(rootNodeModules) &&
|
||||
!fs.existsSync(testNodeModules)
|
||||
) {
|
||||
fs.symlinkSync(rootNodeModules, testNodeModules, 'dir');
|
||||
fs.symlinkSync(rootNodeModules, testNodeModules, 'junction');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue