Skip to content

Commit

Permalink
Windows: Fix Nyquist path for Innosetup target
Browse files Browse the repository at this point in the history
Package\nyquist no longer exists and is now Package\nyquist-support.
However, Innosetup was still looking for the former directory which was
now non-existent, so fix this path.

Signed-off-by: Avery King <[email protected]>
  • Loading branch information
generic-pers0n committed Sep 8, 2024
1 parent 91b0215 commit 727bb72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win/Inno_Setup_Wizard/tenacity.iss.in
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Source: "Package\*.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "Package\languages\*"; DestDir: "{app}\Languages\"; Flags: ignoreversion recursesubdirs
; We don't ship all modules, so the next line is commented out
; Source: "Package\modules\*"; DestDir: "{app}\Modules\"; Flags: ignoreversion recursesubdirs skipifsourcedoesntexist
Source: "Package\nyquist\*"; DestDir: "{app}\Nyquist\"; Flags: ignoreversion recursesubdirs
Source: "Package\nyquist-support\*"; DestDir: "{app}\Nyquist\"; Flags: ignoreversion recursesubdirs
Source: "Package\plug-ins\*"; DestDir: "{app}\Plug-Ins\"; Flags: ignoreversion
Source: "Package\modules\*"; DestDir: "{app}\modules\"; Flags: ignoreversion recursesubdirs

Expand Down

0 comments on commit 727bb72

Please sign in to comment.