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 22db493 commit 3fca253Copy full SHA for 3fca253
swift/extractor/SwiftExtractor.cpp
@@ -41,7 +41,7 @@ static void archiveFile(const SwiftExtractorConfiguration& config, swift::Source
41
ensureDirectory("source archive destination", dstFilePath.parent_path());
42
43
std::error_code ec;
44
- fs::copy(srcFilePath, dstFilePath, fs::copy_options::skip_existing, ec);
+ fs::copy(srcFilePath, dstFilePath, fs::copy_options::overwrite_existing, ec);
45
46
if (ec) {
47
std::cerr << "Cannot archive source file " << srcFilePath << " -> " << dstFilePath << ": "
0 commit comments