mirror of https://github.com/embarklabs/embark.git
Merge pull request #1006 from embark-framework/bugfix/break-on-empty-result
bug: empty response
This commit is contained in:
commit
03a32f0434
|
@ -124,7 +124,7 @@ export const commands = {
|
|||
{
|
||||
timestamp: new Date().getTime(),
|
||||
name: EMBARK_PROCESS_NAME,
|
||||
msg: `${ansiToHtml(command.result)}`,
|
||||
msg: `${ansiToHtml(command.result || '')}`,
|
||||
command: `console> ${payload.command}<br>`,
|
||||
result: command.result
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue