Ensure the listed files have absolute paths.

This commit is contained in:
Paul van Brenk 2016-04-07 15:31:02 -07:00
parent 88a8992ce3
commit 40b22b2fca

View file

@ -20,8 +20,9 @@ namespace ts {
}
for (const file of files) {
const message = `TSFILE: ${file}${sys.newLine}`;
sys.write(message);
const filepath = getNormalizedAbsolutePath(file, sys.getCurrentDirectory());
sys.write(`TSFILE: ${filepath}${sys.newLine}`);
}
}