Skip to content

Commit

Permalink
add arch to cached data path, #113852
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jan 6, 2021
1 parent 5ed76e3 commit 72095f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ function getNodeCachedDir() {
return undefined;
}

return path.join(userDataPath, 'CachedData', commit);
return path.join(userDataPath, 'CachedData-' + process.arch, commit);
}
};
}
Expand Down

0 comments on commit 72095f8

Please sign in to comment.