aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-30 22:34:42 -0700
committerAdam Vandenberg2012-03-30 22:36:45 -0700
commita0cb4e7c11e30ae15f121a2477e9cfbc25534368 (patch)
tree92e276843ad59927d9ed7f85cc1cd87879dbb44c
parent49b0b3903f9ffd7e09e5e639c1ba80763f071f77 (diff)
downloadbrew-a0cb4e7c11e30ae15f121a2477e9cfbc25534368.tar.bz2
install: warn when passed no files
Rationale: we warn when inreplace makes no changes; this is a similar sort of warning. We expected some list (probably via Dir) to include some files, but none were found. Either the list was wrong, or the install can now be omitted.
-rw-r--r--Library/Homebrew/extend/pathname.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb
index 5ea924c9c..3adf6dfc2 100644
--- a/Library/Homebrew/extend/pathname.rb
+++ b/Library/Homebrew/extend/pathname.rb
@@ -8,8 +8,16 @@ class Pathname
sources.each do |src|
case src
when Array
+ if src.empty?
+ opoo "install was passed an empty array"
+ return []
+ end
src.each {|s| results << install_p(s) }
when Hash
+ if src.empty?
+ opoo "install was passed an empty hash"
+ return []
+ end
src.each {|s, new_basename| results << install_p(s, new_basename) }
else
results << install_p(src)