This commit is contained in:
morsh 2017-11-02 11:44:35 +02:00
Родитель a125f266bf
Коммит 6702a90969
2 изменённых файлов: 10 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "ibex-dashboard",
"version": "1.2.0",
"version": "1.2.1",
"private": true,
"dependencies": {
"npm-run-all": "^4.0.2"

Просмотреть файл

@ -81,7 +81,15 @@ const ensureCustomFoldersExists = () => {
}
if (!fs.existsSync(privateTemplate)) {
fs.mkdirSync(privateTemplate);
privateTemplate
.split(path.sep)
.reduce((currentPath, folder) => {
currentPath += folder + path.sep;
if (!fs.existsSync(currentPath)){
fs.mkdirSync(currentPath);
}
return currentPath;
}, '');
}
}