add lib finding to scripts
Matt S Trout [Sun, 15 Jul 2012 17:44:45 +0000 (17:44 +0000)]
bin/ezpz-admin-repl
bin/ezpz-create-test-ezmlm-install
bin/ezpz-repl

index 0ba5445..22850c6 100755 (executable)
@@ -1,5 +1,6 @@
 #!/usr/bin/env perl
 
+use lib (-d 'lib' ? ('lib') : ());
 use File::Which;
 use App::EzPz::UserStore;
 use strictures 1;
index e30ab57..eeabdf6 100755 (executable)
@@ -1,5 +1,6 @@
 #!/usr/bin/env perl
 
+use lib (-d 'lib' ? ('lib') : ());
 use strictures 1;
 use IO::All;
 use Cwd;
index 32efe30..e004a73 100755 (executable)
@@ -1,5 +1,6 @@
 #!/usr/bin/env perl
 
+use lib (-d 'lib' ? ('lib') : ());
 use File::Which;
 use Email::EzPz::List;
 use strictures 1;