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