diff --git a/src/js/tabs/cli.js b/src/js/tabs/cli.js index 3c7db8d33..47a46a1ec 100644 --- a/src/js/tabs/cli.js +++ b/src/js/tabs/cli.js @@ -369,7 +369,7 @@ function writeLineToOutput(text) { return; // suppress output if in building state } - if (text.startsWith("###ERROR: ")) { + if (text.startsWith("###ERROR")) { writeToOutput('' + text + '
'); } else { writeToOutput(text + "
");