summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-06-02 12:33:25 +0900
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2013-06-02 12:33:25 +0900
commite6a8bf685ddb069b79309955b667e93c9bbb5776 (patch)
treee4690bdc6008495d5fc325ecee4a76802d9760d3
parentde2b4d23bb92a818dfb89799f24913df9462c6da (diff)
downloadcarton-e6a8bf685ddb069b79309955b667e93c9bbb5776.tar.gz
doc update
-rw-r--r--lib/Carton/Doc/Exec.pod16
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/Carton/Doc/Exec.pod b/lib/Carton/Doc/Exec.pod
index 83ccc1a..04e1c17 100644
--- a/lib/Carton/Doc/Exec.pod
+++ b/lib/Carton/Doc/Exec.pod
@@ -4,7 +4,7 @@ Carton::Doc::Exec - execute your script in a carton local environment
=head1 SYNOPSIS
- carton exec -Ilib -- perl myscript.pl
+ carton exec perl myscript.pl
=head1 DESCRIPTION
@@ -17,17 +17,3 @@ This is useful to make sure your scripts and application use the exact
same versions of the modules in your lirbary path, and are not using
any of the modules you accidentally installed into your system perl or
perlbrew's site library path.
-
-=head1 OPTIONS
-
-=over 4
-
-=item -Ilib
-
-Like perl's C<-I> option, this allows you to specify the library path
-you want to pass to the script you're going to run. Because of the
-complexity of how perl's C<PERL5OPT> and C<-M> and C<-I> command line
-options are handled, you have to pass this option to the C<carton
-exec> command instead of the actual C<perl> command.
-
-=back