I'm trying to get Filebot working as per this tutorial:
http://www.filebot.net/forums/viewtopic.php?f=4&t=520
I've verified that Filebot is installed and able to run;
Code: Select all
filebot -version
Code: Select all
FileBot 4.5 (r2612) / Java(TM) SE Runtime Environment 1.8.0_25
Code: Select all
2014-10-30 03:27:26 +0000 torrent.c:2119 [Info] [ www.Speed.cd ] -Modern.Family.S06E06.720p.HDTV.x264-KILLERS: Calling script "/Users/XXXX/Desktop/transmission-postprocess"
Code: Select all
#!/bin/bash /usr/local/bin/filebot -script fn:amc --output "/Volumes/Arnrobo" --log-file amc.log --action move --conflict override -non-strict --def artwork=n --def music=n --def subtitles=n --def pushover=[removed] --def "seriesFormat=/Volumes/Arnrobo/TV\ Shows/{n}/Season {s}/{n.space('.')}.{s00e00}" "animeFormat=/Volumes/Arnrobo/Anime\ TV\ Shows/{n}/Season {s}/{n.space('.')}.{s00e00}" "movieFormat=/Volumes/Arnrobo/Movies/{n} ({y})" "ut_dir=$TR_TORRENT_DIR/$TR_TORRENT_NAME" "ut_kind=multi" "ut_title=$TR_TORRENT_NAME"
date >> output.txt
whoami >> output.txt
echo $TR_TORRENT_DIR >> output.txt
echo $TR_TORRENT_NAME >> output.txt
echo $TR_TORRENT_NAME >> output.txt
My problem is that there is no indication that the script is actually being run aside from the Transmission Message Log. Nothing is being added to "amc.log" (this currently exists and is populated when the script is run manually), "output.txt" is not being created, and obviously there's no change in the newly downloaded files. I'm certain that I've set the permissions exactly as per the tutorial, so I'm basically at a loss.
Does anyone have any ideas? Thanks in advance.