diff options
author | Christian Pointner <equinox@helsinki.at> | 2022-12-09 16:34:26 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2022-12-09 16:34:26 (GMT) |
commit | 09b762ba2bcc2479200a394690148b5a6d89e65c (patch) | |
tree | 8ea9685ab36790db427ce6cab47bafe722a30805 /rhautoimport-btl | |
parent | 0d1ffc34da7d3b818ac6af6ed3876d64c3d43afa (diff) |
fix regexp for btl importer
Diffstat (limited to 'rhautoimport-btl')
-rwxr-xr-x | rhautoimport-btl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rhautoimport-btl b/rhautoimport-btl index cb5a6c9..6649e39 100755 --- a/rhautoimport-btl +++ b/rhautoimport-btl @@ -93,7 +93,7 @@ if(Date::Calc::Delta_Days(@broadcast_date, @today) <= $upload_delay_days) { my $id = sprintf("%04d-%02d-%02d", @import_date); my $bd = sprintf("%04d-%02d-%02d", @broadcast_date); -my $bdfile = ".*broadcast-affiliates?-version.*\.mp3"; +my $bdfile = ".*broadcast-affiliates?.*\.mp3"; print "looking for files issued on '$bd' and named like '$bdfile' in RSS Feed\n"; print " -> $RSS_URL\n"; |