diff options
author | Florian Pritz <bluewind@xinu.at> | 2017-03-19 19:37:04 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2017-03-19 19:37:04 +0100 |
commit | 47c228a5156bbc72b7db0696e57b04ac2dd6530c (patch) | |
tree | 2b1b8afceeb2f409698150216a0a0632f1cd334f /script | |
parent | 3ae8c33b5f6fefaa9aadcd9c2549202d6134c416 (diff) | |
download | App-BorgRestore-47c228a5156bbc72b7db0696e57b04ac2dd6530c.tar.gz App-BorgRestore-47c228a5156bbc72b7db0696e57b04ac2dd6530c.tar.xz |
Fix undefined $log in script
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'script')
-rwxr-xr-x | script/borg-restore.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/borg-restore.pl b/script/borg-restore.pl index b55476b..a848362 100755 --- a/script/borg-restore.pl +++ b/script/borg-restore.pl @@ -166,7 +166,7 @@ use Cwd qw(abs_path); use File::Basename; use File::Spec; use Getopt::Long; -use Log::Any; +use Log::Any qw($log); use Log::Any::Adapter; use Pod::Usage; |