aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cask/lib/hbc/artifact/binary.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/artifact/binary.rb b/Library/Homebrew/cask/lib/hbc/artifact/binary.rb
index f41b1b85b..21d123ab9 100644
--- a/Library/Homebrew/cask/lib/hbc/artifact/binary.rb
+++ b/Library/Homebrew/cask/lib/hbc/artifact/binary.rb
@@ -13,7 +13,7 @@ module Hbc
if source.writable?
FileUtils.chmod "+x", source
else
- @command.run!.run("/bin/chmod", args: ["+x", source], sudo: true)
+ @command.run!("/bin/chmod", args: ["+x", source], sudo: true)
end
end
end