@@ -97,7 +97,7 @@ public final class ArgsResolver {
97
97
try fileSystem. writeFileContents ( absolutePath, bytes: . init( contents) )
98
98
}
99
99
case let . fileList( _, . list( items) ) :
100
- try createFileList ( path: actualPath, contents: items, quotePaths : quotePaths )
100
+ try createFileList ( path: actualPath, contents: items)
101
101
case let . fileList( _, . outputFileMap( map) ) :
102
102
try createFileList ( path: actualPath, outputFileMap: map)
103
103
case . relative, . absolute, . standardInput, . standardOutput:
@@ -115,12 +115,12 @@ public final class ArgsResolver {
115
115
return quotePaths ? " ' \( result) ' " : result
116
116
}
117
117
118
- private func createFileList( path: VirtualPath , contents: [ VirtualPath ] , quotePaths : Bool ) throws {
118
+ private func createFileList( path: VirtualPath , contents: [ VirtualPath ] ) throws {
119
119
// FIXME: Need a way to support this for distributed build systems...
120
120
if let absPath = path. absolutePath {
121
121
try fileSystem. writeFileContents ( absPath) { out in
122
122
for path in contents {
123
- try ! out <<< unsafeResolve ( path: path, quotePaths: quotePaths ) <<< " \n "
123
+ try ! out <<< unsafeResolve ( path: path, quotePaths: false ) <<< " \n "
124
124
}
125
125
}
126
126
}
0 commit comments