From f58cff2cb6fc061077e2a7791c77938f07559b52 Mon Sep 17 00:00:00 2001 From: walterlv Date: Mon, 15 Apr 2024 08:58:25 +0800 Subject: [PATCH] Fix windows terminal startup directory --- src/Native/Windows.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Native/Windows.cs b/src/Native/Windows.cs index b6c9bd59..04fe5e8b 100644 --- a/src/Native/Windows.cs +++ b/src/Native/Windows.cs @@ -161,6 +161,7 @@ namespace SourceGit.Native } startInfo.FileName = FindWindowsTerminalApp(); + startInfo.Arguments = $"-d \"{workdir}\""; break; default: App.RaiseException(workdir, $"Bad shell configuration!");