in reply to SmokeTesters Complain of Missing Dependencies Which a Module's Makefile.PL Requires
withuse File::Util;
That way, if File::Util is not installed, the build process simply stops - and no FAIL is either recorded or sent. (You'd probably want to provide a message prior to the exit - so that the user knows why the process is stopping.)eval {require File::Util;}; exit if $@;
|
|---|