From 7227bdb53195a5c9981c9bbe909c902f70a0846b Mon Sep 17 00:00:00 2001 From: aoife cassidy Date: Thu, 3 Apr 2025 08:50:38 +0300 Subject: [PATCH] oops --- app/editor.go | 2 +- app/shell.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/editor.go b/app/editor.go index 643b93f..aee2e5a 100644 --- a/app/editor.go +++ b/app/editor.go @@ -64,7 +64,7 @@ func (view *Editor) Event(state *ui.State, event vaxis.Event) (processed bool) { vt.TERM = os.Getenv("TERM") vt.Attach(state.PostEvent()) vt.Focus() - err := vt.Start(exec.Command("bash", "-l")) + err := vt.Start(exec.Command("bash")) if err != nil { panic(err) } diff --git a/app/shell.go b/app/shell.go index f5dddd7..0f49b50 100644 --- a/app/shell.go +++ b/app/shell.go @@ -65,7 +65,7 @@ func (view *Shell) Event(state *ui.State, event vaxis.Event) (processed bool) { vt.TERM = os.Getenv("TERM") vt.Attach(state.PostEvent()) vt.Focus() - err := vt.Start(exec.Command("bash", "-l")) + err := vt.Start(exec.Command("bash")) if err != nil { panic(err) }