You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some time, the incorrect order LF/CR survived in
`GitSystemConfigSet()`. Let's fix it.
While at it, also add a missing `+` in `RecordChoice()` (which
apparently did not hurt, but let's just fix it anyway).
Signed-off-by: Johannes Schindelin <[email protected]>
Copy file name to clipboardExpand all lines: installer/install.iss
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -676,14 +676,14 @@ begin
676
676
// exit code 5 means it was already unset, so that's okay
677
677
Result:=True
678
678
elsebegin
679
-
LogError('Unable to unset system config "'+Key+'": exit code '+IntToStr(i)+#10+#13+ReadFileAsString(OutPath)+#10+#13+'stderr:'+#10+#13+ReadFileAsString(ErrPath));
679
+
LogError('Unable to unset system config "'+Key+'": exit code '+IntToStr(i)+#13+#10+ReadFileAsString(OutPath)+#13+#10+'stderr:'+#13+#10+ReadFileAsString(ErrPath));
AppDir,SW_HIDE,ewWaitUntilTerminated,i) And (i=0) then
684
684
Result:=True
685
685
elsebegin
686
-
LogError('Unable to set system config "'+Key+'":="'+Value+'": exit code '+IntToStr(i)+#10+#13+ReadFileAsString(OutPath)+#10+#13+'stderr:'+#10+#13+ReadFileAsString(ErrPath));
686
+
LogError('Unable to set system config "'+Key+'":="'+Value+'": exit code '+IntToStr(i)+#13+#10+ReadFileAsString(OutPath)+#13+#10+'stderr:'+#13+#10+ReadFileAsString(ErrPath));
0 commit comments