Skip to content
Snippets Groups Projects
Commit d8756075 authored by Jack Nagel's avatar Jack Nagel
Browse files

Use a Set for skip_clean_paths

parent 7cdf4007
No related branches found
No related tags found
No related merge requests found
......@@ -789,10 +789,9 @@ class Formula
return
end
@skip_clean_paths ||= []
paths.each do |p|
p = p.to_s unless p == :la # Keep :la in paths as a symbol
@skip_clean_paths << p unless @skip_clean_paths.include? p
skip_clean_paths << p
end
end
......@@ -801,7 +800,7 @@ class Formula
end
def skip_clean_paths
@skip_clean_paths or []
@skip_clean_paths ||= Set.new
end
def keg_only reason, explanation=nil
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment