From 44b64f71296124805daafce0d57337dbc6bfb12e Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Mon, 22 Jan 2018 17:32:30 -0500 Subject: [PATCH] Fix compile error --- cmd/micro/shell.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 } }