Skip to content

Commit

Permalink
Update InnoSetup script
Browse files Browse the repository at this point in the history
  • Loading branch information
namazso committed Jul 9, 2024
1 parent abff878 commit 04e35a1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ VersionInfoProductTextVersion={#CI_VERSION}
VersionInfoVersion={#CI_VERSION_NUMERIC}
ChangesAssociations=yes
UninstallDisplayIcon={app}\OpenHashTab.dll,0
ArchitecturesAllowed=x64 arm64
ArchitecturesInstallIn64BitMode=x64 arm64
ArchitecturesAllowed=win64
ArchitecturesInstallIn64BitMode=win64
#ifdef SIGN
SignTool=signtool $f
SignedUninstaller=yes
Expand Down Expand Up @@ -185,7 +185,6 @@ begin
case ProcessorArchitecture of
paX86: Result := Arch = 'x86';
paX64: Result := (Arch = 'x64') or (Arch = 'wow');
paIA64: Result := (Arch = 'ia64') or (Arch = 'wow');
paARM64: Result := (Arch = 'arm64') or (Arch = 'wow');
end;
end;

0 comments on commit 04e35a1

Please sign in to comment.