From aa9b393746f9e365628e42bcedd4f65a19e82926 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 5 Jun 2018 14:48:14 -0400 Subject: [PATCH] Bug 20727: Replace use of tmpdir in updatedatabase.pl --- installer/data/mysql/updatedatabase.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c616f8af4d..eb5265ad1c 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -46,7 +46,6 @@ use MARC::Record; use MARC::File::XML ( BinaryEncoding => 'utf8' ); use File::Path qw[remove_tree]; # perl core module -use File::Spec; use File::Slurp; # FIXME - The user might be installing a new database, so can't rely @@ -11772,7 +11771,7 @@ $dbh->do(q{ WHERE COALESCE(permanent,0)=0 AND dir='koha_upload' }); -my $tmp= File::Spec->tmpdir.'/koha_upload'; +my $tmp = C4::Context->temporary_directory . '/koha_upload'; remove_tree( $tmp ) if -d $tmp; print "Upgrade to $DBversion done (Bug 14893 - Separate temporary storage per instance in Upload.pm)\n"; -- 2.15.1 (Apple Git-101)