зеркало из https://github.com/microsoft/nni.git
updates (#1352)
This commit is contained in:
Родитель
c9d6d60511
Коммит
26fb2e7710
|
@ -60,14 +60,14 @@ function mkDirP(dirPath: string): Promise<void> {
|
||||||
} else {
|
} else {
|
||||||
const parent: string = path.dirname(dirPath);
|
const parent: string = path.dirname(dirPath);
|
||||||
mkDirP(parent).then(() => {
|
mkDirP(parent).then(() => {
|
||||||
fs.mkdir(dirPath, (err: Error) => {
|
fs.mkdir(dirPath, (err) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
deferred.reject(err);
|
deferred.reject(err);
|
||||||
} else {
|
} else {
|
||||||
deferred.resolve();
|
deferred.resolve();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}).catch((err: Error) => {
|
}).catch((err) => {
|
||||||
deferred.reject(err);
|
deferred.reject(err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче