in reply to Re^2: Using eval: $@ isn't returning the error I expect
in thread [SOLVED] Using eval: $@ isn't returning the error I expect

Just create a file named cPanelUserConfig.pm that contains a single line of:
1;
Place that file in one of the @INC directories.
You can get a list of those directories by running:
perl -le "print for @INC;"
Cheers,
Rob

Replies are listed 'Best First'.
Re^4: Using eval: $@ isn't returning the error I expect
by doctormelodious (Acolyte) on Feb 20, 2020 at 07:20 UTC
    Thanks!