diff options
author | Terence Lee <hone02@gmail.com> | 2011-05-17 19:42:51 -0400 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2011-05-18 17:45:32 -0400 |
commit | 72911c218b28658dca0a6f3558f6a9e954aceeb3 (patch) | |
tree | 9d8a086f46ae2c95be456225c1114b9cb84b4a5b /lib | |
parent | 84fdb604e1c9ecc630a03d981e102a075e1ee45c (diff) | |
download | bundler-72911c218b28658dca0a6f3558f6a9e954aceeb3.tar.gz |
i hear you like arrays...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bundler/index.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/index.rb b/lib/bundler/index.rb index 8295272478..7e4ce98641 100644 --- a/lib/bundler/index.rb +++ b/lib/bundler/index.rb @@ -38,7 +38,7 @@ module Bundler def search(query) results = local_search(query) @sources.each do |source| - results << source.search(query) + results += source.search(query) end results end |