Running FileBot from the console, Groovy scripting, shell scripts, etc
chimpchimp
Posts: 6 Joined: 23 Sep 2013, 18:22
Post
by chimpchimp » 23 Sep 2013, 18:31
Starting last night I began getting errors out of the Filebot AMC script used in conjunction with Deluge. I haven't made any changes in the parameters of the script but it is suddenly failing with "Conflicting Arguments".
Code: Select all
Exception: Conflicting arguments: pass in either file arguments or ut_dir/ut_file parameters but not both
The script as I have it:
Code: Select all
#!/bin/bash
TORRENT_ID=$1
TORRENT_NAME=$2
TORRENT_PATH=$3
filebot -script fn:amc --output "/mnt1/nas" --log-file amc.log --action copy --conflict override -non-strict --def artwork=n --def music=n "ut_dir=$TORRENT_PATH/$TORRENT_NAME" "ut_kind=multi" "ut_title=$TORRENT_NAME"
rednoah
The Source
Posts: 23936 Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:
Post
by rednoah » 23 Sep 2013, 19:39
My fault, I forgot ut_file is not set for you guys and I included it in my new sanity checks.
Just ignore it and it'll start working again tomorrow. If it doesn't after 48h come back here.
werkkrew
Posts: 7 Joined: 25 Apr 2013, 17:32
Post
by werkkrew » 23 Sep 2013, 20:58
I started having the same problem but with Transmission instead of Deluge, thanks for the quick fix.
Is there any way to force our scripts to start using the fixed script over her more quickly?
chimpchimp
Posts: 6 Joined: 23 Sep 2013, 18:22
Post
by chimpchimp » 23 Sep 2013, 23:32
Thanks for the reply! Glad I wasn't going crazy.