Merge pull request #1006 from embark-framework/bugfix/break-on-empty-result

bug: empty response
This commit is contained in:
Eric Mastro 2018-10-30 18:09:10 +01:00 committed by GitHub
commit 03a32f0434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ export const commands = {
{ {
timestamp: new Date().getTime(), timestamp: new Date().getTime(),
name: EMBARK_PROCESS_NAME, name: EMBARK_PROCESS_NAME,
msg: `${ansiToHtml(command.result)}`, msg: `${ansiToHtml(command.result || '')}`,
command: `console> ${payload.command}<br>`, command: `console> ${payload.command}<br>`,
result: command.result result: command.result
} }