diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-03-13 22:20:09 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-03-13 22:20:09 (GMT) |
commit | 6a9d9b09f2e69e2c86ab63945b6b04276cbc5d95 (patch) | |
tree | 9c4698f8b6ac3a820270e2987104184ef8e5bbbe /rhautoimport-tr | |
parent | b2c6e4a42ada276356f94f78fd80302694d50af6 (diff) |
fixed last run arguments
Diffstat (limited to 'rhautoimport-tr')
-rwxr-xr-x | rhautoimport-tr | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rhautoimport-tr b/rhautoimport-tr index c604f9d..488c5ed 100755 --- a/rhautoimport-tr +++ b/rhautoimport-tr @@ -38,6 +38,7 @@ my $RSS_URL = "http://cba.fro.at/series/tierrechtsradio/feed?c=Kfs2IoV2Wmd"; $XML::Feed::MULTIPLE_ENCLOSURES=1; my $RD_GROUP = "tierrecht"; my $PV_ID = '506'; +my $LAST_RUN = 0; my @today = Date::Calc::Standard_to_Business(Date::Calc::Today()); if($today[2] == 5) { @@ -46,7 +47,8 @@ if($today[2] == 5) { } if($#ARGV >= 0 && $ARGV[0] eq 'last') { - print "!!!This is the last attempt, there won't be a retry on error!!!\n" + print "!!!This is the last attempt, there won't be a retry on error!!!\n"; + $LAST_RUN = 1; } @@ -128,7 +130,7 @@ for my $entry ($feed->entries) { } if($uri eq "") { print "No Entry found from $bd - "; - if($#ARGV >= 0 && $ARGV[0] eq 'last') { + if($LAST_RUN) { print "giving up, manual import necessary!!!\n"; } else { print "will retry later\n"; |