Browse Source

Fix backwards git init args

pull/306/head
Ionite 12 months ago
parent
commit
208ee648eb
No known key found for this signature in database
  1. 2
      StabilityMatrix.Core/Models/Packages/BaseGitPackage.cs

2
StabilityMatrix.Core/Models/Packages/BaseGitPackage.cs

@ -309,7 +309,7 @@ public abstract class BaseGitPackage : BasePackage
new ProgressReport(-1f, "Initializing git repo", isIndeterminate: true)
);
await PrerequisiteHelper
.RunGit(installedPackage.FullPath!, onConsoleOutput, "init")
.RunGit("init", onConsoleOutput, installedPackage.FullPath)
.ConfigureAwait(false);
await PrerequisiteHelper
.RunGit(

Loading…
Cancel
Save