diff options
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r-- | lib/compilers/dotnet.ts | 5 |
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') { |