diff options
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/brew-unpack.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-unpack.rb b/Library/Contributions/cmd/brew-unpack.rb index e4ff31434..96ea9148a 100755 --- a/Library/Contributions/cmd/brew-unpack.rb +++ b/Library/Contributions/cmd/brew-unpack.rb @@ -89,7 +89,7 @@ module Homebrew extend self ENV['VERBOSE'] = '1' # show messages about tar f.brew do entries = Dir['*'] - cd entries.first if entries.one? && File.directory?(entries.first) + cd entries.first if entries.length == 1 && File.directory?(entries.first) cp_r getwd, stage_dir end ENV['VERBOSE'] = nil |
