diff --git a/Examples/ExamplePackageIntegration/Sources/GrandchildrenModule/GrandchildC.swift b/Examples/ExamplePackageIntegration/Sources/GrandchildrenModule/Grandchild C/GrandchildC.swift similarity index 100% rename from Examples/ExamplePackageIntegration/Sources/GrandchildrenModule/GrandchildC.swift rename to Examples/ExamplePackageIntegration/Sources/GrandchildrenModule/Grandchild C/GrandchildC.swift diff --git a/Examples/ExampleProjectIntegration/ExampleProjectIntegration.xcodeproj/project.pbxproj b/Examples/ExampleProjectIntegration/ExampleProjectIntegration.xcodeproj/project.pbxproj index 5909a68..77e19c5 100644 --- a/Examples/ExampleProjectIntegration/ExampleProjectIntegration.xcodeproj/project.pbxproj +++ b/Examples/ExampleProjectIntegration/ExampleProjectIntegration.xcodeproj/project.pbxproj @@ -419,7 +419,7 @@ /* Begin XCRemoteSwiftPackageReference section */ 321042512B2533ED0088785D /* XCRemoteSwiftPackageReference "SafeDI" */ = { isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/dfed/SafeDI"; + repositoryURL = "https://github.com/dfed/SafeDI.git"; requirement = { branch = main; kind = branch; diff --git a/Plugins/SafeDIGenerator/SafeDIGenerateDependencyTree.swift b/Plugins/SafeDIGenerator/SafeDIGenerateDependencyTree.swift index a72eeae..ccadc26 100644 --- a/Plugins/SafeDIGenerator/SafeDIGenerateDependencyTree.swift +++ b/Plugins/SafeDIGenerator/SafeDIGenerateDependencyTree.swift @@ -48,7 +48,7 @@ struct SafeDIGenerateDependencyTree: BuildToolPlugin { } let inputSourcesFilePath = context.pluginWorkDirectoryURL.appending(path: "InputSwiftFiles.csv").path() try Data( - (targetSwiftFiles.map { $0.path() } + dependenciesSourceFiles.map { $0.path() }) + (targetSwiftFiles.map { $0.path(percentEncoded: false) } + dependenciesSourceFiles.map { $0.path(percentEncoded: false) }) .joined(separator: ",") .utf8 ) @@ -153,7 +153,7 @@ extension Target { let inputSourcesFilePath = context.pluginWorkDirectoryURL.appending(path: "InputSwiftFiles.csv").path() try Data( inputSwiftFiles - .map { $0.path() } + .map { $0.path(percentEncoded: false) } .joined(separator: ",") .utf8 )