* if files can't be override just revert to skip behaviour as a fail-safe

This commit is contained in:
Reinhard Pointner 2013-12-16 02:01:42 +00:00
parent cdc4a94daa
commit 1c6d0cd5f7
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ public class CmdlineOperations implements CmdlineInterface {
if (conflictAction == ConflictAction.OVERRIDE) {
if (!destination.delete()) {
throw new Exception("Failed to override file: " + destination);
CLILogger.log(Level.SEVERE, "Failed to override file: " + destination);
}
}
}