1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut synced 2025-06-07 10:25:42 -04:00

setting up for new server

This commit is contained in:
Ryan Voots 2011-09-03 11:33:21 -04:00
parent 60f0ba278d
commit c1a7c38dfe

View file

@ -1,11 +1,10 @@
#!/usr/bin/perl
#!/home/ryan/perl5/perlbrew/perls/perl-5.14.1/bin/perl
use lib '/home/farnsworth/perl5/lib/perl5';
use local::lib;
# Guess we're being activated inside bin/, so go up a directory.
BEGIN { if( not -e 'lib' and not -e 'etc' and -e 'bb3' ) { chdir ".."; } }
use lib 'lib';
use FindBin;
use lib "$FindBin::Bin/../lib";
use EvalServer;
use POSIX qw/setsid/;