Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: dynamically loading modules/maintaining dev v. prod modules

by PrakashK (Pilgrim)
on Jul 28, 2001 at 03:01 UTC ( [id://100478]=note: print w/replies, xml ) Need Help??


in reply to dynamically loading modules/maintaining dev v. prod modules

Try putting that code in a BEGIN block:
BEGIN { if( index( $ENV{SCRIPT_NAME}, '/dev/' ) == -1 ) { use lib "/blah/perllib/"; } else { use lib "/blah/perldev/"; } }
Update: My apologies too. Should have tested it before posting. As wog said in the node below the code above won't work, since both use lines would be run at compile time. All my votes go to wog. Thanks.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://100478]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-25 23:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found