Fix path normalization for patterns such as './/tsconfig.json'

This commit is contained in:
Bill Ticehurst 2015-03-05 22:57:11 -08:00
parent b784a4212a
commit ee912ee1cd

View File

@ -430,7 +430,11 @@ module ts {
normalized.pop();
}
else {
normalized.push(part);
// A part may be an empty string (which is 'falsy') if the path had consecutive slashes,
// e.g. "path//file.ts". Drop these before re-joining the parts.
if(part) {
normalized.push(part);
}
}
}
}