Skip to content

Commit

Permalink
fix text string on windows aarch64 msi installer (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
junyuanz1 authored Apr 7, 2021
1 parent 0077fde commit 0db5b94
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion wix/Includes/OpenJDK.Variables.wxi.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
<?define ProgramFilesFolder="ProgramFilesFolder" ?>
<?define Win64="no" ?>
<?define Arch="(x86)" ?>
<?else?>
<?elseif $(env.Platform)=x64?>
<?define ProgramFilesFolder="ProgramFiles64Folder" ?>
<?define Win64="yes" ?>
<?define Arch="(x64)" ?>
<?elseif $(env.Platform)=arm64?>
<?define ProgramFilesFolder="ProgramFilesARMFolder" ?>
<?define Win64="no" ?>
<?define Arch="(arm64)" ?>
<?endif?>

<?define ProductVersion="$(var.MSIProductVersion)" ?>
Expand Down

0 comments on commit 0db5b94

Please sign in to comment.