summaryrefslogtreecommitdiff
path: root/rhautoimport-wr
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-06-02 11:42:58 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-06-02 11:42:58 (GMT)
commit2d1d346df2b40eecfc82803d57f15a3165cdf898 (patch)
tree90d7e74f02e75a37b4a299d5324f78d761ad9dbd /rhautoimport-wr
parentd1e4c6e5ca1f785ec603d711b37f79936c255c82 (diff)
fixed last-run warning
Diffstat (limited to 'rhautoimport-wr')
-rwxr-xr-xrhautoimport-wr12
1 files changed, 7 insertions, 5 deletions
diff --git a/rhautoimport-wr b/rhautoimport-wr
index 8d92402..d81aa9b 100755
--- a/rhautoimport-wr
+++ b/rhautoimport-wr
@@ -46,12 +46,15 @@ binmode(STDIN, ":utf8");
binmode(STDOUT, ":utf8");
binmode(STDERR, ":utf8");
-if($#ARGV >= 0 && $ARGV[0] eq 'last') {
- print "!!!This is the last attempt, there won't be a retry on error!!!\n";
- $LAST_RUN = 1;
+my $curweek = RHRD::utils::get_rd_week();
+
+if($curweek == 1 || $curweek == 3) {
+ if($#ARGV >= 0 && $ARGV[0] eq 'last') {
+ print "!!!This is the last attempt, there won't be a retry on error!!!\n";
+ $LAST_RUN = 1;
+ }
}
-my $curweek = RHRD::utils::get_rd_week();
my @today = Date::Calc::Today();
print "today: " . Date::Calc::Date_to_Text(@today) . " (Week: " . $curweek . ")\n";
@@ -71,7 +74,6 @@ if($curweek == 1 || $curweek == 3) {
print "day of next Radio Helsinki broadcast: " . Date::Calc::Date_to_Text(@import_date) . "\n";
-
my @allowed_dbs = rhautoimport::get_dropboxes($RD_GROUP);
if(!defined $allowed_dbs[0] && defined $allowed_dbs[1]) {
print "$allowed_dbs[1]\n";