mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 13:46:10 +00:00
Fix InnoSetup warning (#6881)
This is to fix the InnoSetup warning during the build "Warning: Constant "pf" has been renamed. Use "commonpf" instead or consider using its "auto" form." https://jrsoftware.github.io/issrc/whatsnew.htm Unsure why DefaultDirName was "Program Files", but have updated it to ProgramData as per all other locations in the installer script
This commit is contained in:
parent
e4a511347c
commit
f14cdd4828
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ AppPublisher={#MyAppPublisher}
|
|||
AppPublisherURL={#MyAppURL}
|
||||
AppSupportURL={#MyAppURL}
|
||||
AppUpdatesURL={#MyAppURL}
|
||||
DefaultDirName={pf}\{#MyAppName}
|
||||
DefaultDirName={commonappdata}\{#MyAppName}
|
||||
DefaultGroupName={#MyAppName}
|
||||
DisableProgramGroupPage=yes
|
||||
OutputBaseFilename={#MyOutputFilename}
|
||||
|
|
Loading…
Reference in a new issue