mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -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) {
|
if (Models.Preference.Instance.General.UseWindowsTerminal) {
|
||||||
Process.Start(new ProcessStartInfo {
|
Process.Start(new ProcessStartInfo {
|
||||||
FileName = "wt",
|
FileName = "wt",
|
||||||
Arguments = "\"{bash}\"",
|
Arguments = $"\"{bash}\"",
|
||||||
UseShellExecute = false,
|
UseShellExecute = false,
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue