aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/dotnet.ts
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2023-11-20 22:04:57 -0600
committerGitHub <noreply@github.com>2023-11-20 22:04:57 -0600
commita7e6ec61e36440382931bf3531e6c59e44667bfd (patch)
tree0219c848126d02581f689a19549247cacbebdb1e /lib/compilers/dotnet.ts
parent255d5abf2d6ea7d8dce30e98b6852bd0e089cb02 (diff)
downloadcompiler-explorer-a7e6ec61e36440382931bf3531e6c59e44667bfd.tar.gz
compiler-explorer-a7e6ec61e36440382931bf3531e6c59e44667bfd.zip
Bump remaining deps (#5781)gh-9637
And reformat everything.
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r--lib/compilers/dotnet.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts
index 3d602e180..c2ad30250 100644
--- a/lib/compilers/dotnet.ts
+++ b/lib/compilers/dotnet.ts
@@ -324,10 +324,7 @@ class DotNetCompiler extends BaseCompiler {
if (envVar) {
const [name] = envVar.split('=');
const normalizedName = name.trim().toUpperCase();
- if (
- normalizedName === 'DOTNET_JITDISASM' ||
- normalizedName === 'DOTNET_JITDISASMASSEMBILES'
- ) {
+ if (normalizedName === 'DOTNET_JITDISASM' || normalizedName === 'DOTNET_JITDISASMASSEMBILES') {
continue;
}
if (normalizedName === 'DOTNET_JITDIFFABLEDASM' || normalizedName === 'DOTNET_JITDISASMDIFFABLE') {