diff options
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/bottle.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index 5321831e3..9c7157d8e 100644 --- a/Library/Homebrew/cmd/bottle.rb +++ b/Library/Homebrew/cmd/bottle.rb @@ -81,7 +81,9 @@ module Homebrew extend self sha1 = bottle_path.sha1 relocatable = false - ohai "Detecting if #{filename} is relocatable..." + if File.size?(bottle_path) > 1*1024*1024 + ohai "Detecting if #{filename} is relocatable..." + end keg = Keg.new f.prefix keg.lock do # Relocate bottle library references before testing for built-in |
