diff --git a/lib/dashboard/console.js b/lib/dashboard/console.js index 1472be79..a88f9e94 100644 --- a/lib/dashboard/console.js +++ b/lib/dashboard/console.js @@ -38,11 +38,13 @@ class Console { var pluginCmds = this.plugins.getPluginsProperty('console', 'console'); for (let pluginCmd of pluginCmds) { let pluginOutput = pluginCmd.call(this, cmd, {}); - //console.log("plugin output: ", pluginOutput) if (pluginOutput !== false && pluginOutput !== 'false' && pluginOutput !== undefined) return callback(pluginOutput); + if (pluginOutput === undefined) { + return callback(""); + } } - //console.log("Do we hit the here?") + let output = this.processEmbarkCmd(cmd); if (output) { return callback(output);