Skip to content

Commit f9fb4a6

Browse files
authored
fix: just log path without additional manipulations (avoid exception on windows) (#166)
1 parent f1f9c36 commit f9fb4a6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

editors/code/src/bootstrap.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ export async function bootstrap(): Promise<string> {
2727
);
2828
}
2929

30-
const rpath = fs.realpathSync(path);
31-
log.info("Using server binary at", path);
32-
log.info("Server binary realpath:", rpath);
30+
log.info("Server binary path:", path);
3331

3432
return path;
3533
}

0 commit comments

Comments
 (0)