Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-makarov committed May 19, 2024
1 parent 07e3aed commit 39fd380
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/censorius.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,10 @@ def generate_paths_target(target, parent_path)
target.dependencies.each do |dependency|
generate_paths(dependency, path)
end
target.package_product_dependencies.each do |dependency|
generate_paths(dependency, path)
if target.respond_to?(:package_product_dependencies)
target.package_product_dependencies.each do |dependency|
generate_paths(dependency, path)
end
end
end

Expand Down

0 comments on commit 39fd380

Please sign in to comment.