diff --git a/Plogon/BuildProcessor.cs b/Plogon/BuildProcessor.cs index 024bce6..e3baf06 100644 --- a/Plogon/BuildProcessor.cs +++ b/Plogon/BuildProcessor.cs @@ -935,14 +935,14 @@ public async Task ProcessTask(BuildTask task, bool commit, string? RecurseSubmodules = false, FetchOptions = { - Depth = 1, + //Depth = 1, } }); var repo = new Repository(workDir.FullName); Commands.Fetch(repo, "origin", new [] { task.Manifest.Plugin.Commit }, new FetchOptions { - Depth = 1, + //Depth = 1, }, null); repo.Reset(ResetMode.Hard, task.Manifest.Plugin.Commit); @@ -1363,7 +1363,7 @@ private void FetchSubmodules(Repository repo, HashSet Init = true, FetchOptions = { - Depth = 1, + //Depth = 1, } });