aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Poulhiès <dkm@kataplop.net>2021-11-21 19:15:27 +0100
committerGitHub <noreply@github.com>2021-11-21 19:15:27 +0100
commit0efd82d6a43f59f19b17d004942003a76765224c (patch)
tree5d8f0089eb5ac28b8cd87cf270b4dfa2b2cd4f18
parent75c4b86a6865268ad66636b92d75cbabef222d47 (diff)
downloadcompiler-explorer-0efd82d6a43f59f19b17d004942003a76765224c.tar.gz
compiler-explorer-0efd82d6a43f59f19b17d004942003a76765224c.zip
Fix linter error in erlang.jsgh-1292
Trivial linter error: ``` compiler-explorer/lib/compilers/erlang.js 65:1 warning More than 1 blank line not allowed no-multiple-empty-lines ✖ 1 problem (0 errors, 1 warning) 0 errors and 1 warning potentially fixable with the `--fix` option. ```
-rw-r--r--lib/compilers/erlang.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compilers/erlang.js b/lib/compilers/erlang.js
index b844b822b..d91da4d16 100644
--- a/lib/compilers/erlang.js
+++ b/lib/compilers/erlang.js
@@ -61,8 +61,7 @@ export class ErlangCompiler extends BaseCompiler {
this.parseCompilationOutput(result, transformedInput);
return result;
}
-
-
+
getVersion() {
logger.info(`Gathering ${this.compiler.id} version information on ${this.compiler.exe}...`);
if (this.compiler.explicitVersion) {