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.
1 parent 1ed5f6a commit f461e71Copy full SHA for f461e71
swift/extractor/SwiftExtractor.cpp
@@ -41,7 +41,7 @@ static void archiveFile(const SwiftExtractorConfiguration& config, swift::Source
41
42
std::error_code ec;
43
fs::copy(source, destination, fs::copy_options::overwrite_existing, ec);
44
- if (!ec) {
+ if (ec) {
45
LOG_INFO(
46
"Cannot archive source file {} -> {}, probably a harmless race with another process ({})",
47
source, destination, ec);
0 commit comments