Skip to content

Commit cac4de4

Browse files
committed
fix cycle checker on windows
1 parent 6812a17 commit cac4de4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/lib/tsb/builder.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/lib/tsb/builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ export function createTypeScriptBuilder(config: IConfiguration, projectFile: str
315315
const jsValue = value.files.find(candidate => candidate.basename.endsWith('.js'));
316316
if (jsValue) {
317317
outHost.addScriptSnapshot(jsValue.path, new ScriptSnapshot(String(jsValue.contents), new Date()));
318-
toBeCheckedForCycles.push(jsValue.path);
318+
toBeCheckedForCycles.push(normalize(jsValue.path));
319319
}
320320

321321
}).catch(e => {

0 commit comments

Comments
 (0)