Skip to content

Commit 6da8414

Browse files
committed
installer: actually record user's Git Credential Manager choice
We diligently tried to use the previous choice whether to enable the Git Credential Manager or not, but we never recorded that choice. Until now. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 042cf36 commit 6da8414

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

installer/install.iss

+5
Original file line numberDiff line numberDiff line change
@@ -1931,6 +1931,11 @@ begin
19311931
end;
19321932
RecordChoice(PreviousDataKey,'Performance Tweaks FSCache',Data);
19331933
Data:='Disabled';
1934+
if RdbExtraOptions[GP_GCM].Checked then begin
1935+
Data:='Enabled';
1936+
end;
1937+
RecordChoice(PreviousDataKey,'Use Credential Manager',Data);
1938+
Data:='Disabled';
19341939
if RdbExtraOptions[GP_Symlinks].Checked then begin
19351940
Data:='Enabled';
19361941
end;

0 commit comments

Comments
 (0)