summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-09 13:06:00 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-01-09 14:09:53 +1100
commitee15202207a739e1154c28f4385cf9a9014fa064 (patch)
tree47b91d519960aabc739ddb6b6a8eb94dbbe2dc11 /pkg
parenta936c0592ff879d2c9a194556bae568d7943c5da (diff)
add newline after message because it looks like the message doesn't appear otherwise for some reason
Diffstat (limited to 'pkg')
-rw-r--r--pkg/gui/gui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/gui.go b/pkg/gui/gui.go
index ded51cd7d..2017a236e 100644
--- a/pkg/gui/gui.go
+++ b/pkg/gui/gui.go
@@ -664,7 +664,7 @@ func (gui *Gui) runSubprocess(cmdObj oscommands.ICmdObj) error { //nolint:unpara
subprocess.Stderr = ioutil.Discard
subprocess.Stdin = nil
- fmt.Fprintf(os.Stdout, "\n%s", style.FgGreen.Sprint(gui.Tr.PressEnterToReturn))
+ fmt.Fprintf(os.Stdout, "\n%s\n", style.FgGreen.Sprint(gui.Tr.PressEnterToReturn))
fmt.Scanln() // wait for enter press
return err