We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 093ff40 + 545c2f6 commit 40c2b3cCopy full SHA for 40c2b3c
swift/extractor/SwiftExtractor.cpp
@@ -46,7 +46,6 @@ static void archiveFile(const SwiftExtractorConfiguration& config, swift::Source
46
if (ec) {
47
std::cerr << "Cannot archive source file " << srcFilePath << " -> " << dstFilePath << ": "
48
<< ec.message() << "\n";
49
- std::abort();
50
}
51
52
swift/extractor/remapping/SwiftOpenInterception.macOS.cpp
@@ -61,7 +61,7 @@ void finalizeRemapping(
61
62
auto hash = originalHashFile(original);
63
auto hashed = scratchDir / hash;
64
- if (!hash.empty() && fs::exists(hashed)) {
+ if (!hash.empty() && fs::exists(patched)) {
65
std::error_code ec;
66
fs::create_symlink(/* target */ patched, /* symlink */ hashed, ec);
67
0 commit comments