Skip to content

Commit a2b42e8

Browse files
authored
mkdir bug fix (#178)
1 parent 7e6b1cc commit a2b42e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cider-app/electron-app/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ try {
166166
stopAccess();
167167
return false;
168168
}
169-
return fs.promises.mkdir(persistentPath.path).then(() => {
169+
return fs.promises.mkdir(persistentPath.path, { recursive: true }).then(() => {
170170
console.log('directory created', persistentPath.path);
171171
stopAccess();
172172
return true;

cider-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"email": "contact@oatear.com",
77
"url": "https://oatear.com"
88
},
9-
"version": "0.6.12",
9+
"version": "0.6.13",
1010
"repository": "https://github.com/oatear/cider",
1111
"main": "electron-app/dist/main.js",
1212
"scripts": {

0 commit comments

Comments
 (0)