Merge pull request #11382 from github/alexdenisov/swift-relax-file-archiving

Swift: do not abort if cannot archive a source file
This commit is contained in:
Paolo Tranquilli
2022-11-23 06:56:26 +01:00
committed by GitHub

View File

@@ -46,7 +46,6 @@ static void archiveFile(const SwiftExtractorConfiguration& config, swift::Source
if (ec) {
std::cerr << "Cannot archive source file " << srcFilePath << " -> " << dstFilePath << ": "
<< ec.message() << "\n";
std::abort();
}
}