Skip to content

Commit a918c09

Browse files
committed
Try again
Signed-off-by: miigotu <[email protected]>
1 parent 3a0e96e commit a918c09

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

SickChill.iss

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -403,14 +403,12 @@ begin
403403
end;
404404
405405
procedure InstallPython();
406-
var
407-
ResultCode: Integer;
408-
Shell := CreateOleObject('Shell.Application')
409-
ZipFile := Shell.NameSpace(ExpandConstantEx('{tmp}\{filename}', 'filename', PythonDep.Filename))
410-
TargetFolder := Shell.NameSpace(ExpandConstant('{app}\Python3'))
411406
begin
412-
InstallDepPage.SetText('Installing Python...', '')
413-
TargetFolder.CopyHere(ZipFile.Items, SHCONTCH_NOPROGRESSBOX or SHCONTCH_RESPONDYESTOALL)
407+
InstallDepPage.SetText('Installing Python...', '');
408+
Shell := CreateOleObject('Shell.Application');
409+
ZipFile := Shell.NameSpace(ExpandConstantEx('{tmp}\{filename}', 'filename', PythonDep.Filename));
410+
TargetFolder := Shell.NameSpace(ExpandConstant('{app}\Python3'));
411+
TargetFolder.CopyHere(ZipFile.Items, SHCONTCH_NOPROGRESSBOX or SHCONTCH_RESPONDYESTOALL);
414412
CleanPython()
415413
InstallDepPage.SetProgress(InstallDepPage.ProgressBar.Position+1, InstallDepPage.ProgressBar.Max)
416414
end;

0 commit comments

Comments
 (0)