Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-makarov committed May 19, 2024
1 parent 2e17c09 commit 013297f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/censorius.rb
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,11 @@ def generate_paths_reference_proxy(proxy, parent_path)
end

def generate_paths_remote_swift_package_reference(reference, parent_path)
@paths_by_object[reference] = "#{parent_path}/XCRemoteSwiftPackageReference(#{reference.repositoryURL}/#{reference.requirement})"
params = [
reference.repositoryURL,
reference.requirement
]
@paths_by_object[reference] = "#{parent_path}/XCRemoteSwiftPackageReference(#{params.join(', ')})"
end

def generate_paths_remote_swift_package_product_dependency(dependency, parent_path)
Expand Down

0 comments on commit 013297f

Please sign in to comment.