diff options
author | Florian Pritz <bluewind@xinu.at> | 2017-11-26 00:11:44 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2017-11-26 00:11:44 +0100 |
commit | de186e51e282f28feb4d438a962e27cf41c34b31 (patch) | |
tree | e2ba68438b25f30b318d153a41444ebdcca16777 /lib | |
parent | 3f9a3b6ef336b88c7fa215131cf933275ffea845 (diff) | |
download | App-BorgRestore-de186e51e282f28feb4d438a962e27cf41c34b31.tar.gz App-BorgRestore-de186e51e282f28feb4d438a962e27cf41c34b31.tar.xz |
Bump cache version level
The previous code didn't support borg 1.1 properly and the cached might
now be broken.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/App/BorgRestore/Settings.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/App/BorgRestore/Settings.pm b/lib/App/BorgRestore/Settings.pm index 557a097..d7cea4b 100644 --- a/lib/App/BorgRestore/Settings.pm +++ b/lib/App/BorgRestore/Settings.pm @@ -124,7 +124,7 @@ for my $configfile (@configfiles) { $cache_path_base = App::BorgRestore::Helper::untaint($cache_path_base, qr/.*/); sub get_cache_dir { - return "$cache_path_base/v2"; + return "$cache_path_base/v3"; } sub get_cache_path { |