From 62a7d9bbcc5f43cee74468b18b36906c6b3ff1e1 Mon Sep 17 00:00:00 2001 From: Birger Skogeng Pedersen Date: Wed, 19 Jan 2022 12:29:40 +0100 Subject: invoke title-setting shell command appropriately --- pkg/commands/oscommands/os.go | 10 +++------- pkg/gui/gui.go | 2 +- 2 files changed, 4 insertions(+), 8 deletions(-) (limited to 'pkg') diff --git a/pkg/commands/oscommands/os.go b/pkg/commands/oscommands/os.go index 64d9edab8..5790d17dc 100644 --- a/pkg/commands/oscommands/os.go +++ b/pkg/commands/oscommands/os.go @@ -269,7 +269,7 @@ func GetLazygitPath() string { return `"` + filepath.ToSlash(ex) + `"` } -func UpdateWindowTitle() error { +func (c *OSCommand) UpdateWindowTitle() error { if runtime.GOOS != "windows" { return nil } @@ -278,10 +278,6 @@ func UpdateWindowTitle() error { return getWdErr } title := fmt.Sprint(filepath.Base(path), " - Lazygit") - args := append([]string{"/C", "title"}, strings.Split(title, " ")...) - cmd := exec.Command("cmd", args...) - if err := cmd.Run(); err != nil { - return err - } - return nil + args := append([]string{"cmd", "/C", "title"}, strings.Split(title, " ")...) + return c.Cmd.NewShell(strings.Join(args, " ")).Run() } diff --git a/pkg/gui/gui.go b/pkg/gui/gui.go index ffae386fc..6e3c4c955 100644 --- a/pkg/gui/gui.go +++ b/pkg/gui/gui.go @@ -683,7 +683,7 @@ func (gui *Gui) loadNewRepo() error { return err } - oscommands.UpdateWindowTitle() + gui.OSCommand.UpdateWindowTitle() return nil } -- cgit v1.2.3