mirror of
https://github.com/rastapasta/mapscii.git
synced 2024-11-21 23:53:08 +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);
|
||||
return true;
|
||||
} catch (error) {
|
||||
return error.code === 'EEXIST';
|
||||
if (error.code === 'EEXIST') return true;
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user