[auth] fix x64 installer on arm64 Windows (#3502)
Portable x64 Ente Auth works on arm64 Windows, but the installer version fails due to not supporting arm64. As per Inno Setup's documentation the 'x64' option will only allow installing on x64 Windows, changing to 'x64compatible' allows the x64 installer to work on arm64 as well.
This commit is contained in:
@@ -16,8 +16,8 @@ SetupIconFile={{SETUP_ICON_FILE}}
|
||||
WizardStyle=modern
|
||||
;PrivilegesRequired={{PRIVILEGES_REQUIRED}}
|
||||
PrivilegesRequiredOverridesAllowed=dialog
|
||||
ArchitecturesAllowed=x64
|
||||
ArchitecturesInstallIn64BitMode=x64
|
||||
ArchitecturesAllowed=x64compatible
|
||||
ArchitecturesInstallIn64BitMode=x64compatible
|
||||
UninstallDisplayIcon={app}\auth.exe
|
||||
|
||||
[Languages]
|
||||
|
||||
Reference in New Issue
Block a user