Skip to content

Commit

Permalink
Fix case sensitive comparison (closes #198)
Browse files Browse the repository at this point in the history
  • Loading branch information
namazso committed Jul 11, 2024
1 parent 9101f09 commit e1511d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ Source: "cmake-openhashtab-x64\OpenHashTab.dll"; DestDir: "{app}"; Flags: ign
Source: "cmake-openhashtab-x64\*.exe"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('x64')
Source: "cmake-openhashtab-x64\*.pdb"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('x64')

Source: "cmake-openhashtab-ARM64\OpenHashTab.dll"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('ARM64')
Source: "cmake-openhashtab-ARM64\*.exe"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('ARM64')
Source: "cmake-openhashtab-ARM64\*.pdb"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('ARM64')
Source: "cmake-openhashtab-ARM64\OpenHashTab.dll"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('arm64')
Source: "cmake-openhashtab-ARM64\*.exe"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('arm64')
Source: "cmake-openhashtab-ARM64\*.pdb"; DestDir: "{app}"; Flags: ignoreversion restartreplace 64bit; Check: InstallArch('arm64')

[CustomMessages]
GroupDescription=Optional features:
Expand Down

0 comments on commit e1511d9

Please sign in to comment.