Archived
1
0

Check EISDIR for Mac when performing mkdir

This commit is contained in:
Asher
2019-02-26 18:23:33 -06:00
parent d556e110cb
commit 71b7bbf99a
5 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ export const setup = (dataDirectory: string): void => {
try {
fs.mkdirSync(currentDir);
} catch (ex) {
if (ex.code !== "EEXIST") {
if (ex.code !== "EEXIST" && ex.code !== "EISDIR") {
throw ex;
}
}

View File

@ -54,7 +54,7 @@ export class SharedProcess {
try {
fs.mkdirSync(dir);
} catch (ex) {
if (ex.code !== "EEXIST") {
if (ex.code !== "EEXIST" && ex.code !== "EISDIR") {
throw ex;
}
}