aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcommitay2017-04-20 17:21:57 +1000
committerMarkus Reiter2017-04-21 14:52:35 +0200
commit13c33f561ecfbbeaeb87e1eed3092beca22e5346 (patch)
tree911a12b379121caeff8990696fbafe5c39041c8a
parent7d9513130b525ae950214407be77083d97d31d9a (diff)
downloadbrew-13c33f561ecfbbeaeb87e1eed3092beca22e5346.tar.bz2
Update binary.rb
-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