summaryrefslogtreecommitdiff
path: root/script/carton
blob: 86b9ad32a78e25a9e3297646c38153897f5aab6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!perl
use strict;
use 5.008001;
use Carton::CLI;

exit Carton::CLI->new->run(@ARGV);

__END__

=head1 NAME

carton - Perl module dependency manager

=head1 SYNOPSIS

  > carton install
  > carton exec ./myscript

=head1 DESCRIPTION

For more documentation, refer to L<Carton> by running C<perldoc Carton> or C<carton --help>.

=head1 SEE ALSO

L<Carton>

=cut