From 697258df119213aa03b4535723c6556515ee6c0e Mon Sep 17 00:00:00 2001 From: Nicolas Combe Date: Tue, 7 Sep 2021 11:04:30 -0500 Subject: [PATCH] Fix "Rake aborted; Command failed with status 127" (#162) --- ext/swiftlint/Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/swiftlint/Rakefile b/ext/swiftlint/Rakefile index 614e353..1ede239 100644 --- a/ext/swiftlint/Rakefile +++ b/ext/swiftlint/Rakefile @@ -15,7 +15,7 @@ namespace :swiftlint do SWIFTLINT_MD5_HASH = DangerSwiftlint::SWIFTLINT_HASH puts "Downloading swiftlint@#{VERSION}" - sh "./downloadSwiftlint.sh -u #{URL} -d #{DESTINATION} -a #{ASSET} -dh #{SWIFTLINT_MD5_HASH}" + sh "sh downloadSwiftlint.sh -u #{URL} -d #{DESTINATION} -a #{ASSET} -dh #{SWIFTLINT_MD5_HASH}" end end