Merge pull request #21 from Microsoft/fix-cache-initialization

Fix cache initialization
This commit is contained in:
Ryu Yu 2016-02-19 17:40:08 -08:00
Родитель b484d9f7c1 4b162f81cc
Коммит 7fd728e00c
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,10 @@ function ensurePathExists(resolvedPath) {
function joinAndCreatePath(pathList) {
var outPath;
pathList.forEach(function (relPath) {
if (relPath === '') relPath = path.sep;
// Make sure to reappend the root if we need to
if (relPath === '') relPath = path.sep; // *NIX root
if (relPath.indexOf(':') >= 0) relPath += path.sep; // Windows root
if (!outPath) {
outPath = relPath;
} else {