Merge pull request #2164 from maximumdata/master

Fix for unnecessary fat arrow warning from linter in executable beaut…
This commit is contained in:
Steven Zeck 2018-06-16 23:40:36 -05:00 committed by GitHub
commit a39bbd52cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ class HybridExecutable extends Executable
shouldTryWithDocker = not @isInstalled and @docker? shouldTryWithDocker = not @isInstalled and @docker?
@verbose("Executable shouldTryWithDocker", shouldTryWithDocker, @isInstalled, @docker?) @verbose("Executable shouldTryWithDocker", shouldTryWithDocker, @isInstalled, @docker?)
if shouldTryWithDocker if shouldTryWithDocker
return @initDocker().catch(() => Promise.reject(errorOrThis)) return @initDocker().catch(() -> Promise.reject(errorOrThis))
return @ return @
) )
.catch((error) => .catch((error) =>