From 2a424ad3b287dbbda68d926a567b9b35fb1b79c7 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 23 Sep 2013 15:30:10 +0000 Subject: [PATCH] * allow runs when ut_dir is set even if ut_file is not @see http://www.filebot.net/forums/viewtopic.php?f=6&t=961 --- website/scripts/amc.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/scripts/amc.groovy b/website/scripts/amc.groovy index ce9e9be3..85283254 100644 --- a/website/scripts/amc.groovy +++ b/website/scripts/amc.groovy @@ -13,7 +13,7 @@ if (tryQuietly{ !(ut_state ==~ ut_state_allow) }) { } // check ut mode vs standalone mode -if ((args.size() > 0 && (tryQuietly{ ut_dir }?.size() > 0 || tryQuietly{ ut_file }?.size() > 0)) || (args.size() == 0 && (tryQuietly{ ut_dir } == null || tryQuietly{ ut_file } == null))) { +if ((args.size() > 0 && (tryQuietly{ ut_dir }?.size() > 0 || tryQuietly{ ut_file }?.size() > 0)) || (args.size() == 0 && (tryQuietly{ ut_dir } == null && tryQuietly{ ut_file } == null))) { throw new Exception("Conflicting arguments: pass in either file arguments or ut_dir/ut_file parameters but not both") }