Skip to content

Commit bb11528

Browse files
committed
Fix wrong used expansion
Signed-off-by: miigotu <[email protected]>
1 parent 3428e9d commit bb11528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SickChill.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ var
405405
ResultCode: Integer;
406406
begin
407407
InstallDepPage.SetText('Installing Python...', '')
408-
Exec(ExpandConstantEx('{tmp}\{filename}', 'filename', PythonDep.Filename), ExpandConstantEx('/quiet TargetDir="{app}\Python3" InstallAllUsers=1 '), '', SW_SHOW, ewWaitUntilTerminated, ResultCode)
408+
Exec(ExpandConstantEx('{tmp}\{filename}', 'filename', PythonDep.Filename), ExpandConstant('/quiet TargetDir="{app}\Python3" InstallAllUsers=1'), '', SW_SHOW, ewWaitUntilTerminated, ResultCode)
409409
CleanPython()
410410
InstallDepPage.SetProgress(InstallDepPage.ProgressBar.Position+1, InstallDepPage.ProgressBar.Max)
411411
end;

0 commit comments

Comments
 (0)