diff options
author | Matt Godbolt <matt@godbolt.org> | 2019-05-15 13:47:28 -0500 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2019-05-15 13:47:28 -0500 |
commit | c327df8fc99bebe344a5a24da83959ce77f9f1ab (patch) | |
tree | 9ba6c002714eef21eba687ad380e957f67fb57bf /lib/compilers/assembly.js | |
parent | 090ac3863ce72f90ebe112f1112eb03a788dac14 (diff) | |
download | compiler-explorer-c327df8fc99bebe344a5a24da83959ce77f9f1ab.tar.gz compiler-explorer-c327df8fc99bebe344a5a24da83959ce77f9f1ab.zip |
Fix equals
Diffstat (limited to 'lib/compilers/assembly.js')
-rw-r--r-- | lib/compilers/assembly.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/assembly.js b/lib/compilers/assembly.js index 9b83bafb9..6df9b09ab 100644 --- a/lib/compilers/assembly.js +++ b/lib/compilers/assembly.js @@ -69,7 +69,7 @@ class AssemblyCompiler extends BaseCompiler { return new Promise((resolve, reject) => { fs.readdir(outputFolder, (err, files) => { files.forEach(file => { - if (file[0] != '.' && file !== this.compileFilename) { + if (file[0] !== '.' && file !== this.compileFilename) { resolve(path.join(outputFolder, file)); } }); |