I am running OSX and the newest version of Deluge.
I have deluge setup to call three scripts currently:
The first is this:
Code: Select all
#!/bin/bash
torrentid=$1
torrentname=$2
torrentpath=$3
echo "Torrent Details: " $torrentname $torrentpath $torrentid >> ~/Desktop/FBTest/execute_script.log
The next script is the AMC script which looks like this:
Code: Select all
#!/bin/bash
torrentid=$1
torrentname=$2
torrentpath=$3
filebot -script fn:amc --output /Users/kmarriner/Desktop/FBTest/Media --log-file amc.log --action duplicate --conflict override -non-strict --def music=n artwork=n "ut_dir=torrentpath/torrentname" "ut_kind=multi" "ut_title= torrentname"
After beating my head against the keyboard for about 4 hours trying to get it to work, I added a third script:
Code: Select all
filebot -version > /Users/kmarriner/Desktop/FBTest/version.log 2>&1
if I run it manually, I get this:
Code: Select all
FileBot 4.6 (r3052) / Java(TM) SE Runtime Environment 1.8.0_60
So from this, I have concluded that for some reason its not triggering filebot when called inside of a script. Any ideas?