mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
fix<Welcome>: fix wrong arguments to start Windows Terminal without repositories
This commit is contained in:
parent
e31b9f9686
commit
835dbc0ece
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue