aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/clean.js
diff options
context:
space:
mode:
authorPartouf <partouf@gmail.com>2018-10-14 02:04:03 +0200
committerPartouf <partouf@gmail.com>2018-10-14 02:04:03 +0200
commit8e4760876946ffd5aa5078c4dd2f8ff4a6314edb (patch)
treef67d856f2b8d282b59a1a995729ae7ff4e8c061d /lib/compilers/clean.js
parent349d414d865ac12f8bdf7c61b82015d481a0af4f (diff)
downloadcompiler-explorer-8e4760876946ffd5aa5078c4dd2f8ff4a6314edb.tar.gz
compiler-explorer-8e4760876946ffd5aa5078c4dd2f8ff4a6314edb.zip
fix error message
Diffstat (limited to 'lib/compilers/clean.js')
-rw-r--r--lib/compilers/clean.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/clean.js b/lib/compilers/clean.js
index 30456963d..d50b82be6 100644
--- a/lib/compilers/clean.js
+++ b/lib/compilers/clean.js
@@ -49,7 +49,7 @@ class CleanCompiler extends BaseCompiler {
return utils.splitLines(output).map(line => {
let matches = line.match(errorRegex);
if (matches) {
- return "<source>:" + matches[1] + ",0: error: (" + matches[2] + ") " + matches[3];
+ return "<source>:" + matches[1] + ",0: error: " + matches[2];
} else {
matches = line.match(errorLineRegex);
if (matches) {