Skip to content

Commit

Permalink
create all desktop setting directories (#2023)
Browse files Browse the repository at this point in the history
  • Loading branch information
chmike authored and andydotxyz committed Feb 24, 2021
1 parent 099191b commit 83648f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/settings_desktop.go
Expand Up @@ -25,7 +25,7 @@ func ensureDirExists(dir string) {
return
}

err := os.Mkdir(dir, 0700)
err := os.MkdirAll(dir, 0700)
if err != nil {
fyne.LogError("Unable to create settings storage:", err)
}
Expand Down

0 comments on commit 83648f2

Please sign in to comment.