diff options
author | Steven Schubiger <stsc@refcnt.org> | 2014-07-17 13:41:35 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2014-07-17 13:41:35 +0200 |
commit | 3dfe1ec58194885cbbdda6168b1c00863690a221 (patch) | |
tree | 9ac20dec81bed6d82931a1914ca468bd9ccf1386 | |
parent | 7297bad447c8eb7feaf9946506f5a337443cfe55 (diff) | |
download | lugs-3dfe1ec58194885cbbdda6168b1c00863690a221.tar.gz lugs-3dfe1ec58194885cbbdda6168b1c00863690a221.tar.bz2 |
lreminder: write to tmp directory
-rwxr-xr-x | lreminder/reminder.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lreminder/reminder.pl b/lreminder/reminder.pl index 81d898e..14d3a66 100755 --- a/lreminder/reminder.pl +++ b/lreminder/reminder.pl @@ -15,7 +15,7 @@ # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # Author: Steven Schubiger <stsc@refcnt.org> -# Last modified: Wed Jul 16 16:17:32 CEST 2014 +# Last modified: Thu Jul 17 11:55:40 CEST 2014 use strict; use warnings; @@ -37,7 +37,7 @@ use Text::Wrap::Smart::XS qw(fuzzy_wrap); use URI (); use WWW::Mechanize (); -my $VERSION = '0.45'; +my $VERSION = '0.46'; #----------------------- # Start of configuration @@ -57,7 +57,7 @@ my $Config = { #--------------------- my $dbh = DBI->connect("dbi:mysql(RaiseError=>1):$Config->{dbase_name}", $Config->{dbase_user}, $Config->{dbase_pass}); -my $file = (URI->new($Config->{events_url})->path_segments)[-1]; +my $file = File::Spec->catfile('tmp', (URI->new($Config->{events_url})->path_segments)[-1]); my ($test, $run) = (false, false); |