mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-06 14:24:04 -05:00
config resolver: use slash for relativeFile as before (for #40256)
This commit is contained in:
@@ -70,7 +70,7 @@ export class ConfigurationResolverService implements IConfigurationResolverServi
|
||||
}
|
||||
|
||||
private get relativeFile(): string {
|
||||
return (this.workspaceRoot) ? relative(this.workspaceRoot, this.file) : this.file;
|
||||
return (this.workspaceRoot) ? paths.normalize(relative(this.workspaceRoot, this.file)) : this.file;
|
||||
}
|
||||
|
||||
private get fileBasename(): string {
|
||||
|
||||
Reference in New Issue
Block a user