aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2013-10-26 21:48:14 -0700
committerMisty De Meo2013-10-26 21:51:30 -0700
commit71fcefc6137fd8c67952e114a8485bfae599ea1b (patch)
treed34c15f1921a190503f1b1d52613bdcfa296b11a /Library
parent91dfb608054aeb373c47643eebfa60ba0058946f (diff)
downloadbrew-71fcefc6137fd8c67952e114a8485bfae599ea1b.tar.bz2
brew-unpack: use #length == 1, not #one?
Array#one? wasn't yet defined in Ruby 1.8.6. In this case the block form isn't being used, so Array.length == 1 is a simple replacement. Fixes mistydemeo/tigerbrew#123.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-unpack.rb2
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