1 files changed, 3 insertions, 1 deletions
diff --git a/LibGitTest/Test1.cs b/LibGitTest/Test1.cs
index ac88cf9..ebd6f7e 100644
--- a/LibGitTest/Test1.cs
+++ b/LibGitTest/Test1.cs
@@ -1,3 +1,4 @@
+using System.Runtime.CompilerServices;
using LibGit;
namespace LibGitTest;
@@ -6,7 +7,8 @@ public class Test1
{
public static async Task Run()
{
- var repo = new GitRepo(new FileRepoSource(@"/home/root@Rory/tmpgit/MatrixRoomUtils.git"));
+ Console.WriteLine("Test1 running");
+ var repo = new GitRepo(new FileRepoSource(@"/home/Rory/git/matrix/MatrixRoomUtils.git"));
// var repo = new GitRepo(new WebRepoSource("https://git.rory.gay/MatrixRoomUtils.git/"));
var commit = await repo.GetCommit("HEAD");
|