@@ -, +, @@ Name "FindBin::Bin" used only once: possible typo --- misc/migration_tools/bulkmarcimport.pl | 1 + xt/yaml_valid.t | 1 + 2 files changed, 2 insertions(+) --- a/misc/migration_tools/bulkmarcimport.pl +++ a/misc/migration_tools/bulkmarcimport.pl @@ -32,6 +32,7 @@ use Time::HiRes qw( gettimeofday ); use Getopt::Long qw( GetOptions ); use IO::File; use Pod::Usage qw( pod2usage ); +use FindBin (); use Koha::Logger; use Koha::Biblios; --- a/xt/yaml_valid.t +++ a/xt/yaml_valid.t @@ -20,6 +20,7 @@ use Modern::Perl; use Test::YAML::Valid; use File::Find; +use FindBin (); use Test::More; --