You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
// set userData path manually, muon is not using package name as path to save user data.constuserDataPath=path.join(app.getPath('userData'),isDev ? '.' : `../${productName}`)// set pathapp.setPath('userData',userDataPath)
muon would be closed by itself if the path is not exist. even muon created the folder.
I must add these code before set path
// create folder manually, muon won't create this properly.fs.existsSync(userDataPath)||fs.mkdirSync(userDataPath)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
muon would be closed by itself if the path is not exist. even muon created the folder.
I must add these code before set path
The text was updated successfully, but these errors were encountered: