mirror of
https://github.com/rastapasta/mapscii.git
synced 2024-11-22 08:03:07 +01:00
Merge pull request #57 from rastapasta/create-folder-error
Throw an error if creating a folder fails.
This commit is contained in:
commit
d98aced647
@ -168,7 +168,8 @@ class TileSource {
|
|||||||
fs.mkdirSync(path);
|
fs.mkdirSync(path);
|
||||||
return true;
|
return true;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return error.code === 'EEXIST';
|
if (error.code === 'EEXIST') return true;
|
||||||
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user