Skip to content

Commit

Permalink
Fix java arch being inconsistent with the manifest (#1515)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eskaan committed Jan 17, 2023
1 parent 73b3f48 commit 2f20cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/desktop/utils/index.js
Expand Up @@ -84,7 +84,7 @@ export const convertOSToJavaFormat = ElectronFormat => {
export const convertArchToJavaFormat = ElectronFormat => {
switch (ElectronFormat) {
case 'x64':
return 'amd64';
return 'x64';
case 'ia32':
return 'x32';
case 'arm':
Expand Down

0 comments on commit 2f20cd9

Please sign in to comment.