Skip to content

Commit 230d28f

Browse files
committed
[Dependency Scanning] Do not quote paths in the dependency scanner invocation command
Since we are passing in the command-line to the scanner library with individual flags and paths as separate strings, this should not be necessary. Depends on swiftlang/swift#60712 Part of rdar://98985453
1 parent c771555 commit 230d28f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Sources/SwiftDriver/ExplicitModuleBuilds/ModuleDependencyScanning.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,7 @@ public extension Driver {
331331
fileprivate func itemizedJobCommand(of job: Job, forceResponseFiles: Bool,
332332
using resolver: ArgsResolver) throws -> [String] {
333333
let (args, _) = try resolver.resolveArgumentList(for: job,
334-
forceResponseFiles: forceResponseFiles,
335-
quotePaths: true)
334+
forceResponseFiles: forceResponseFiles)
336335
return args
337336
}
338337
}

0 commit comments

Comments
 (0)