ignore dependencies of build-time-dependency

This commit is contained in:
hyuraku 2022-01-27 15:34:04 +09:00
parent 51da118a90
commit 6d0c6d0604

View File

@ -124,6 +124,7 @@ class Dependency
expanded_deps << dep
else
next if @expand_stack.include? dep.name
next if dep.tags.include?(:build)
expanded_deps.concat(expand(dep.to_formula, cache_key: cache_key, ignore_missing: ignore_missing, &block))
expanded_deps << dep