Let ParallelFileMerger only warn about CASENAME.[0-9]*.EXT files.

Previously the regex issued warning for all files containing ".[0-9]*." in the name
in the output directory. That was too general and created more warnings than we wanted.
This commit is contained in:
Markus Blatt
2018-09-05 15:36:49 +02:00
parent 25248066d8
commit 07bc4396ab

View File

@@ -64,7 +64,7 @@ public:
void operator()(const fs::path& file)
{
const static boost::regex regex(".+\\.(\\d+)\\..+");
const static boost::regex regex("[^.]+\\.(\\d+)\\.[^.]+");
boost::smatch matches;
std::string filename = file.filename().native();