We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2b6c37 commit 095ceaaCopy full SHA for 095ceaa
src/setting.cpp
@@ -429,7 +429,7 @@ msa::option::option(po::variables_map& vm) {
429
if (!vm.count("overwrite")) {
430
std::string outFileStr = (this->compressed) ? this->outFile + ".gz" : this->outFile;
431
if (fs::exists(outFileStr)) {
432
- std::cerr << "ERROR: " << outFileStr << " already exists. Please use another file name.\n";
+ std::cerr << "ERROR: " << outFileStr << " already exists. Please use another file name or add --overwrite to overwrite the existing file.\n";
433
fs::remove_all(tempDir);
434
exit(1);
435
}
0 commit comments