@@ -, +, @@ $ perl -cw ./misc/migration_tools/koha-svc.pl you should *not* get 'syntax OK' returned from command $ sudo cpanm File::Slurp $ perl -cw ./misc/migration_tools/koha-svc.pl you should now get 'syntax OK' returned from command --- C4/Installer/PerlDependencies.pm | 5 +++++ 1 file changed, 5 insertions(+) --- a/C4/Installer/PerlDependencies.pm +++ a/C4/Installer/PerlDependencies.pm @@ -674,6 +674,11 @@ our $PERL_DEPS = { 'required' => '0', 'min_ver' => '3.9', }, + 'File::Slurp' => { + 'usage' => 'core', + 'required' => '1', + 'min_ver' => '9999.13', + }, }; 1; --