Fix compile error

This commit is contained in:
Zachary Yedidia
2018-01-22 17:32:30 -05:00
parent 0a49ea0a0d
commit 44b64f7129

View File

@@ -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
}
}