Tomáš Hampl

Results 2 comments of Tomáš Hampl

Hi, same problem here, some hint to resolve ? ``` EEXIST: file already exists, mkdir '/Users/user/work/data-admin-gui/.cache' at mkdirSync (fs.js:775:3) at new FsStorageService (/Users/user/work/data-admin-gui/dist/server.js:239910:65) at _createClass (/Users/user/work/data-admin-gui/dist/server.js:24689:20) at _createProviderInstance (/Users/user/work/data-admin-gui/dist/server.js:24661:26) at...

there is bug in XpFsStorageService use ``` if (!stat.isDirectory()) {``` not ```if (!stat.hasOwnProperty('isDirectory')) {``` workaround can by done by own implementation of storageService https://gist.github.com/meatfly/baff02d8004802a870b77171f0b3f6e0 and than use in app.server.module.ts ```...