diff options
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/stage1.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c index 739e3dfaa..876c40867 100644 --- a/mdk-stage1/stage1.c +++ b/mdk-stage1/stage1.c @@ -398,9 +398,10 @@ static enum return_type handle_clp(char* clp, char* live, char* location_live, c return RETURN_ERROR; *is_symlink = 1; return RETURN_OK; + } else { + log_message("move: can't find %s nor %s, proceeding hoping files will be there", clp, live); + return RETURN_OK; } - log_message("move: panic, can't find %s nor %s", clp, live); - return RETURN_ERROR; } if (lomount(clp, location_mount, NULL, 1)) { |