diff options
Diffstat (limited to 'lib/App')
-rw-r--r-- | lib/App/BorgRestore/DB.pm | 4 | ||||
-rw-r--r-- | lib/App/BorgRestore/Settings.pm | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/App/BorgRestore/DB.pm b/lib/App/BorgRestore/DB.pm index 35975d6..0bc5214 100644 --- a/lib/App/BorgRestore/DB.pm +++ b/lib/App/BorgRestore/DB.pm @@ -9,6 +9,7 @@ use autodie; use DBI; use Function::Parameters; use Log::Any qw($log); +use Path::Tiny; =encoding utf-8 @@ -27,6 +28,9 @@ method new($class: $db_path, $cache_size) { bless $self, $class; if (! -f $db_path) { + # ensure the cache directory exists + path($db_path)->parent->mkpath({mode => oct(700)}); + my $db = $self->_open_db($db_path, $cache_size); $self->initialize_db(); } else { diff --git a/lib/App/BorgRestore/Settings.pm b/lib/App/BorgRestore/Settings.pm index 26a175e..557a097 100644 --- a/lib/App/BorgRestore/Settings.pm +++ b/lib/App/BorgRestore/Settings.pm @@ -6,7 +6,6 @@ use warnings; use App::BorgRestore::Helper; use autodie; -use File::Path qw(mkpath); use Sys::Hostname; =encoding utf-8 @@ -124,9 +123,6 @@ for my $configfile (@configfiles) { } $cache_path_base = App::BorgRestore::Helper::untaint($cache_path_base, qr/.*/); -# ensure the cache directory exists -mkpath(get_cache_dir(), {mode => oct(700)}); - sub get_cache_dir { return "$cache_path_base/v2"; } |