Skip to content

Commit

Permalink
Force '/' in %OUTDIR% even on Windows. Close #2010
Browse files Browse the repository at this point in the history
  • Loading branch information
jlelong committed Mar 29, 2020
1 parent 5fddbf6 commit 9ca0c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class Manager {
.replace(/%DOCFILE%/g, docfile)
.replace(/%DIR%/g, docker ? './' : path.dirname(texPath))
.replace(/%TMPDIR%/g, this.extension.builder.tmpDir)
return path.normalize(out.split(path.sep).join('/'))
return path.normalize(out).split(path.sep).join('/')

}

Expand Down

0 comments on commit 9ca0c06

Please sign in to comment.