Throw an error if creating a Folder fails.

This commit is contained in:
Christian Paul 2018-11-18 21:34:07 -08:00
parent b320618a7e
commit ca789ba9dd

View File

@ -169,6 +169,7 @@ class TileSource {
return true;
} catch (error) {
return error.code === 'EEXIST';
throw error;
}
}
}