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

Commit 84d756c

Browse files
committed
GitIsValid needs to be set, it's checked in InitializeEnvironment
1 parent 7510f0d commit 84d756c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/GitHub.Api/Application/ApplicationManagerBase.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ public void Run(bool firstRun)
9999
{
100100
if (path.IsInitialized)
101101
{
102-
var state = new GitInstaller.GitInstallationState { GitExecutablePath = path };
102+
var state = new GitInstaller.GitInstallationState {
103+
GitExecutablePath = path,
104+
GitIsValid = true
105+
};
103106
endTask.PreviousResult = state;
104107
endTask.Start();
105108
return;

0 commit comments

Comments
 (0)