mv: Move on to other files if rename fails with something other than EXDEV

This commit is contained in:
Michael Forney 2021-07-30 12:18:32 -07:00
parent df6599ef78
commit 7d60e2cabb
1 changed files with 4 additions and 3 deletions

7
mv.c
View File

@ -27,11 +27,12 @@ mv(const char *s1, const char *s2, int depth)
recurse(AT_FDCWD, s1, NULL, &r);
if (cp_status || rm_status)
mv_status = 1;
return 0;
}
} else {
weprintf("%s -> %s:", s1, s2);
mv_status = 1;
}
return -1;
return 0;
}
static void