diff options
author | RabsRincon <ruben@rinconblanco.es> | 2022-04-26 05:26:48 +0200 |
---|---|---|
committer | RabsRincon <ruben@rinconblanco.es> | 2022-04-26 05:26:48 +0200 |
commit | 40fe769459c4c34c58af530f32fc3a33a7ced2d7 (patch) | |
tree | 9e2560c5aa9e31762d068b29c00a533f633c8d4c /lib/compilers/erlang.js | |
parent | fb35d64a92d2f4c2dcf0109ddaf1b999563a0b3c (diff) | |
download | compiler-explorer-40fe769459c4c34c58af530f32fc3a33a7ced2d7.tar.gz compiler-explorer-40fe769459c4c34c58af530f32fc3a33a7ced2d7.zip |
Set comma-dangle to always in server code and es5 in client codegh-2532
Diffstat (limited to 'lib/compilers/erlang.js')
-rw-r--r-- | lib/compilers/erlang.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/erlang.js b/lib/compilers/erlang.js index ef57b0d01..bef2dfbe9 100644 --- a/lib/compilers/erlang.js +++ b/lib/compilers/erlang.js @@ -80,7 +80,7 @@ export class ErlangCompiler extends BaseCompiler { return this.execCompilerCached( versionCmd, ['-noshell', '-eval', 'io:fwrite("~s~n", [erlang:system_info(otp_release)]), halt().'], - execOptions + execOptions, ); } catch (err) { logger.error(`Unable to get version for compiler '${this.compiler.exe}' - ${err}`); |