Skip to content

Commit

Permalink
config resolver: use slash for relativeFile as before (for #40256)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Dec 18, 2017
1 parent 47372c6 commit 313a21d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 313a21d

Please sign in to comment.