We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6b1cc commit a2b42e8Copy full SHA for a2b42e8
cider-app/electron-app/main.ts
@@ -166,7 +166,7 @@ try {
166
stopAccess();
167
return false;
168
}
169
- return fs.promises.mkdir(persistentPath.path).then(() => {
+ return fs.promises.mkdir(persistentPath.path, { recursive: true }).then(() => {
170
console.log('directory created', persistentPath.path);
171
172
return true;
cider-app/package.json
@@ -6,7 +6,7 @@
6
"email": "contact@oatear.com",
7
"url": "https://oatear.com"
8
},
9
- "version": "0.6.12",
+ "version": "0.6.13",
10
"repository": "https://github.com/oatear/cider",
11
"main": "electron-app/dist/main.js",
12
"scripts": {
0 commit comments