From ef26f5b41c04e33d41407741efdc60e3b376e293 Mon Sep 17 00:00:00 2001 From: leo Date: Sat, 9 Mar 2024 11:04:03 +0800 Subject: [PATCH] fix: bad arguments to query git version --- src/Commands/Version.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Version.cs b/src/Commands/Version.cs index f4da1767..54a937f7 100644 --- a/src/Commands/Version.cs +++ b/src/Commands/Version.cs @@ -1,7 +1,7 @@ namespace SourceGit.Commands { public class Version : Command { public Version() { - Args = "-v"; + Args = "--version"; RaiseError = false; }