Support absolute paths in mkdirs in build-utils, too

This commit is contained in:
Mark Probst 2018-07-28 16:45:19 -04:00
Родитель 27dc888c9d
Коммит cdcfb032ee
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -169,7 +169,13 @@ function mkdirs(dir) {
if (components.length === 0) {
throw new Error("mkdirs must be called with at least one path component");
}
let soFar = ".";
let soFar;
if (components[0].length === 0) {
soFar = "/";
components.shift();
} else {
soFar = ".";
}
for (const c of components) {
soFar = path.join(soFar, c);
try {