diff options
| author | Adam Vandenberg | 2012-02-17 23:07:16 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-17 23:07:16 -0800 |
| commit | 4e9c4e3872bb0f4ff4b55af6ffc6e84fc2d9146b (patch) | |
| tree | 1c48a86d5070b9367b076e867062233f53c907d1 /Library/Formula | |
| parent | 8f3d373c83cd82fa13b3b8f773859dea0206b961 (diff) | |
| download | homebrew-4e9c4e3872bb0f4ff4b55af6ffc6e84fc2d9146b.tar.bz2 | |
Update return values of install and install_symlink
These now return an Array of all the target destinations.
Previously, if a single argument was passed a single non-
Array was returned.
This behavior has been changed so that an Array is always returned
even for a single argument.
Updated the test.
Hopefully this won't break any custom code out there.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/getmail.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/getmail.rb b/Library/Formula/getmail.rb index ce46e758f..34bc9738e 100644 --- a/Library/Formula/getmail.rb +++ b/Library/Formula/getmail.rb @@ -9,7 +9,7 @@ class Getmail < Formula scripts = %w[ getmail getmail_fetch getmail_maildir getmail_mbox ] libexec.install 'getmailcore' libexec_scripts = libexec.install scripts - bin.install_symlink *libexec_scripts + bin.install_symlink libexec_scripts man1.install Dir['docs/*.1'] end end |
