From: Zachary Yedidia Date: Mon, 22 Jan 2018 22:32:30 +0000 (-0500) Subject: Fix compile error X-Git-Tag: v1.4.0~4 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=44b64f71296124805daafce0d57337dbc6bfb12e;p=micro.git Fix compile error --- diff --git a/cmd/micro/shell.go b/cmd/micro/shell.go index 88a8c656..3e9e4aca 100644 --- a/cmd/micro/shell.go +++ b/cmd/micro/shell.go @@ -123,6 +123,7 @@ func HandleShellCommand(input string, openTerm bool, waitToFinish bool) string { RunBackgroundShell(input) return "" } else { - return RunInteractiveShell(input, waitToFinish, false) + output, _ := RunInteractiveShell(input, waitToFinish, false) + return output } }