diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-08-09 05:43:47 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2009-08-09 05:43:47 (GMT) |
commit | 37c61f7001e9c74867e25bd6baacec5c1f0bbd1d (patch) | |
tree | f49041534b2f1cacef733ddefe3227110cb4c4a0 | |
parent | 105a7f4ebcae4bd2fee13c5093239ada08696f79 (diff) | |
download | linhes_pkgbuild-37c61f7001e9c74867e25bd6baacec5c1f0bbd1d.zip linhes_pkgbuild-37c61f7001e9c74867e25bd6baacec5c1f0bbd1d.tar.gz linhes_pkgbuild-37c61f7001e9c74867e25bd6baacec5c1f0bbd1d.tar.bz2 |
MythVodka:Fixed cron.daily.
-rw-r--r-- | abs/extra-testing/mythvodka/PKGBUILD | 2 | ||||
-rwxr-xr-x | abs/extra-testing/mythvodka/hulu_grabber.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/abs/extra-testing/mythvodka/PKGBUILD b/abs/extra-testing/mythvodka/PKGBUILD index 2a59f2b..0832093 100644 --- a/abs/extra-testing/mythvodka/PKGBUILD +++ b/abs/extra-testing/mythvodka/PKGBUILD @@ -3,7 +3,7 @@ pkgname=mythvodka pkgver=0.7 -pkgrel=10 +pkgrel=11 pkgdesc="MythVodka (Video On Demand Killer App) is a plugin for MythTV allowing streaming of BBC iPlayer, Hulu, HTTP and NZB content." arch=('i686' 'x86_64') license=('GPL2') diff --git a/abs/extra-testing/mythvodka/hulu_grabber.sh b/abs/extra-testing/mythvodka/hulu_grabber.sh index fa76a6a..4840dc0 100755 --- a/abs/extra-testing/mythvodka/hulu_grabber.sh +++ b/abs/extra-testing/mythvodka/hulu_grabber.sh @@ -3,7 +3,7 @@ log=/var/log/mythtv/hulu_grabber.log out=/var/tmp/huludata.xml rm -f $log echo "Start on `date`" >>$log 2>&1 -time /usr/local/bin/gethulu.pl $out.new >>$log 2>&1 +/usr/local/bin/gethulu.pl $out.new >>$log 2>&1 stat=$? if [ $stat -ne 0 ]; then echo "Bad status $stat from gethulu.pl" >>$log 2>&1 |