From 835dbc0ececce8eadaca5793869aaa9cd3b24bcb Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 13 Sep 2021 15:09:45 +0800 Subject: [PATCH] fix: fix wrong arguments to start Windows Terminal without repositories --- src/Views/Widgets/Welcome.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Widgets/Welcome.xaml.cs b/src/Views/Widgets/Welcome.xaml.cs index 8f82f48f..0f5eab61 100644 --- a/src/Views/Widgets/Welcome.xaml.cs +++ b/src/Views/Widgets/Welcome.xaml.cs @@ -89,7 +89,7 @@ namespace SourceGit.Views.Widgets { if (Models.Preference.Instance.General.UseWindowsTerminal) { Process.Start(new ProcessStartInfo { FileName = "wt", - Arguments = "\"{bash}\"", + Arguments = $"\"{bash}\"", UseShellExecute = false, }); } else {