diff options
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r-- | lib/compilers/dotnet.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts index cd9ec8e86..53156962b 100644 --- a/lib/compilers/dotnet.ts +++ b/lib/compilers/dotnet.ts @@ -101,7 +101,7 @@ class DotNetCompiler extends BaseCompiler { this.buildConfig, this.targetFramework, this.rID, - 'publish' + 'publish', ); const programDllPath = path.join(programPublishPath, 'CompilerExplorer.dll'); @@ -164,7 +164,7 @@ class DotNetCompiler extends BaseCompiler { programPublishPath, programDllPath, crossgen2Options, - this.getOutputFilename(programDir, this.outputFilebase) + this.getOutputFilename(programDir, this.outputFilebase), ); if (crossgen2Result.code !== 0) { @@ -203,7 +203,7 @@ class DotNetCompiler extends BaseCompiler { await fs.writeFile( outputPath, - result.stdout.map(o => o.text).reduce((a, n) => `${a}\n${n}`) + result.stdout.map(o => o.text).reduce((a, n) => `${a}\n${n}`), ); return result; |