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

Commit 08719d9

Browse files
Ideas
1 parent c9eeccb commit 08719d9

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/GitHub.Api/Application/ApplicationManagerBase.cs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,13 @@ public void Run(bool firstRun)
4848
{
4949
Logger.Trace("Run - CurrentDirectory {0}", NPath.CurrentDirectory);
5050

51-
SetupGit()
52-
.Then(RestartRepository)
53-
.ThenInUI(InitializeUI)
54-
.Start();
51+
var afterGitSetup = new ActionTask(CancellationToken, RestartRepository)
52+
.ThenInUI(InitializeUI);
53+
54+
// SetupGit()
55+
// .Then(RestartRepository)
56+
// .ThenInUI(InitializeUI)
57+
// .Start();
5558
}
5659

5760
private ITask SetupGit()

0 commit comments

Comments
 (0)