v1.3.0.1 (Epic Store release)

This commit is contained in:
Regalis11
2024-03-28 18:34:33 +02:00
parent 81ca8637be
commit 3791670c42
269 changed files with 13160 additions and 2966 deletions
+2 -2
View File
@@ -5,13 +5,13 @@ namespace DeployAll;
public static class GitCmd
{
private const string gitCmdName = "git";
private const string GitCmdName = "git";
private static ProcessStartInfo MakePsi(params string[] args)
{
var psi = new ProcessStartInfo
{
FileName = gitCmdName,
FileName = GitCmdName,
RedirectStandardError = true,
RedirectStandardOutput = true
};