From 1035da2350b346bf3b151f463af3a27dc0d5b030 Mon Sep 17 00:00:00 2001 From: Mike Dettmer Date: Wed, 13 Jun 2018 13:58:58 -0400 Subject: [PATCH] Fix for unnecessary fat arrow warning from linter in executable beautifier --- src/beautifiers/executable.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beautifiers/executable.coffee b/src/beautifiers/executable.coffee index 7eb2468..afebd19 100644 --- a/src/beautifiers/executable.coffee +++ b/src/beautifiers/executable.coffee @@ -400,7 +400,7 @@ class HybridExecutable extends Executable shouldTryWithDocker = not @isInstalled and @docker? @verbose("Executable shouldTryWithDocker", shouldTryWithDocker, @isInstalled, @docker?) if shouldTryWithDocker - return @initDocker().catch(() => Promise.reject(errorOrThis)) + return @initDocker().catch(() -> Promise.reject(errorOrThis)) return @ ) .catch((error) =>