mirror of https://github.com/keeweb/keeweb
fix #1530: recursive creation of the portable directory
parent
5081df4f2f
commit
d7ee936b27
|
@ -574,7 +574,7 @@ function setUserDataPaths() {
|
|||
const portableUserDataDir = path.resolve(portableConfigDir, portableConfig.userDataDir);
|
||||
|
||||
if (!fs.existsSync(portableUserDataDir)) {
|
||||
fs.mkdirSync(portableUserDataDir);
|
||||
fs.mkdirSync(portableUserDataDir, { recursive: true });
|
||||
}
|
||||
|
||||
app.setPath('userData', portableUserDataDir);
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
Release notes
|
||||
-------------
|
||||
##### v1.15.2 (TBD)
|
||||
`-` fix #1530: recursive creation of the portable directory
|
||||
|
||||
##### v1.15.1 (2020-06-07)
|
||||
`-` fix #1528: OTP generation for stored values
|
||||
|
||||
|
|
Loading…
Reference in New Issue