Deprecate skip_clean :all

This was mostly used to prevent stripping. Now we don't strip. Force formula to remove this setting or be more specific about folders they don't want pruned.
This commit is contained in:
Max Howell 2012-08-29 14:13:46 -04:00
parent 1eb808c109
commit 4feb8e1cb4

View File

@ -678,7 +678,11 @@ private
def skip_clean paths
if paths == :all
@skip_clean_all = true
opoo "skip_clean :all is deprecated"
puts "Skip clean was commonly used to prevent brew from stripping binaries."
puts "brew no longer strips binaries, if skip_clean is required to prevent"
puts "brew from removing empty directories, you should specify exact paths"
puts "in the formula."
return
end
@skip_clean_paths ||= []