[cache_repair, thin_repair] fix bug introduced in recent patch

I hadn't realised that check_file_exists() also checked that it was
a regular file, which we don't want for the couple of uses I recently
added.

This patch adds an optional arg must_be_regular_file, and defaults
it to true, preserving the original behaviour.  The recent additions
have this set to false.
This commit is contained in:
Joe Thornber
2019-10-14 09:21:38 +01:00
parent 1dd7b454bb
commit 0fc7529c01
4 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ namespace {
int repair(string const &old_path, string const &new_path) {
bool metadata_touched = false;
try {
file_utils::check_file_exists(new_path);
file_utils::check_file_exists(new_path, false);
metadata_touched = true;
metadata_dump(open_metadata_for_read(old_path),
output_emitter(new_path),