in reply to Re: Upgrading Perl codebase of older Perl version
in thread Upgrading Perl codebase of older Perl version
BEGIN { unshift @INC, "/some/path/Net-Clacks/lib"; unshift @INC, "/another/path/My-Secret-Module/lib"; }; use Net::Clacks; use My::Secret::Module;
At least that's the variant i use when debugging. (Original code checks for the '--debug' flag and only unshifts the uninstalled paths if that is set).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Upgrading Perl codebase of older Perl version
by NERDVANA (Priest) on Sep 04, 2024 at 19:20 UTC | |
by cavac (Prior) on Sep 09, 2024 at 13:44 UTC |