mirror of https://github.com/Jackett/Jackett
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
|
@ -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 New Issue