Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,13 @@ final public class SwiftDriverTaskAction: TaskAction, BuildValueValidatingTaskAc
}
}
let contents = ByteString(encodingAsUTF8: ResponseFiles.responseFileContents(args: responseFileCommandLine, format: driverPayload.linkerResponseFileFormat))
try executionDelegate.fs.createDirectory(linkerResponseFilePath.dirname, recursive: true)
try executionDelegate.fs.write(linkerResponseFilePath, contents: contents, atomically: true)
}

return .succeeded
} catch {
outputDelegate.error("Unexpected error in querying jobs from dependency graph: \(error.localizedDescription)")
outputDelegate.error("Unexpected error in querying jobs from dependency graph: \(error)")
return .failed
}
}
Expand Down
Loading