Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix(windows): fix appx install on non-OS drive
Browse files Browse the repository at this point in the history
fixes #2057
fixes #2055
fixes #2050
fixes #2048
fixes #2036
fixes #1985
fixes #1971
fixes #1960
fixes #1950
fixes #1944
fixes #1909
fixes #1897
fixes #1880
fixes #1839
fixes #1834
fixes #1817
fixes #1776
fixes #1767
  • Loading branch information
davidmurdoch committed Oct 13, 2020
1 parent fbe38f3 commit ea250ed
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ if (process.platform === "win32") {
.then(()=> {
return spawn("cmd.exe", ["/c", "mkdir", path.join(USERDATA_PATH, "workspaces")])
})
.then(()=> {
return spawn("cmd.exe", ["/c", "mkdir", path.join(USERDATA_PATH, "default")])
})
.then(()=> {
return spawn("cmd.exe", ["/c", "mkdir", path.join(USERDATA_PATH, "global")])
})
.catch(e => { console.error(e) });

// start a migration, if needed
Expand Down

0 comments on commit ea250ed

Please sign in to comment.