aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers')
-rw-r--r--lib/compilers/erlang.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/erlang.js b/lib/compilers/erlang.js
index d91da4d16..aa9ebde3f 100644
--- a/lib/compilers/erlang.js
+++ b/lib/compilers/erlang.js
@@ -72,7 +72,7 @@ export class ErlangCompiler extends BaseCompiler {
const versionCmd = this.compilerProps(`compiler.${this.compiler.id}.runtime`);
execOptions.timeoutMs = 0; // No timeout for --version. A sort of workaround for slow EFS/NFS on the prod site
execOptions.ldPath = this.getSharedLibraryPathsAsLdLibraryPaths([]);
-
+
try {
return this.execCompilerCached(
versionCmd,
@@ -84,7 +84,7 @@ export class ErlangCompiler extends BaseCompiler {
return null;
}
}
-
+
getOutputFilename(dirPath, outputFilebase) {
return path.join(dirPath, `${outputFilebase}.S`);
}