From 1c6d0cd5f7df72e6de288258275961aaf13e658f Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 16 Dec 2013 02:01:42 +0000 Subject: [PATCH] * if files can't be override just revert to skip behaviour as a fail-safe --- source/net/sourceforge/filebot/cli/CmdlineOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/sourceforge/filebot/cli/CmdlineOperations.java b/source/net/sourceforge/filebot/cli/CmdlineOperations.java index 2a692142..9ef7e37b 100644 --- a/source/net/sourceforge/filebot/cli/CmdlineOperations.java +++ b/source/net/sourceforge/filebot/cli/CmdlineOperations.java @@ -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); } } }