Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 28e5e55

Browse files
committed
Fix bug with path to symlinks list in the installer
1 parent 0fe607f commit 28e5e55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SageMath.iss

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ var
147147
filenames: TArrayOfString;
148148
filenam: String;
149149
begin
150-
LoadStringsFromFile(ExpandConstant('{app}\app\etc\symlinks.lst'), filenames);
150+
LoadStringsFromFile(ExpandConstant('{#Runtime}\etc\symlinks.lst'), filenames);
151151
n := GetArrayLength(filenames);
152152
WizardForm.ProgressGauge.Min := 0;
153153
WizardForm.ProgressGauge.Max := n - 1;
@@ -159,7 +159,7 @@ begin
159159
WizardForm.FilenameLabel.Caption := Copy(filenam, 2, Length(filenam));
160160
WizardForm.ProgressGauge.Position := i;
161161
Exec(ExpandConstant('{sys}\attrib.exe'), '+S ' + filenam,
162-
ExpandConstant('{app}\app'), SW_HIDE,
162+
ExpandConstant('{#Runtime}'), SW_HIDE,
163163
ewNoWait, resultCode);
164164
end;
165165
end;

0 commit comments

Comments
 (0)