Dist::Zilla::App::Command::install - install your dist


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::App::Command::install - install your dist

VERSION

Top

version 4.200008

SYNOPSIS

Top

Installs your distribution using a specified command.

    dzil install [--install-command="cmd"]

EXAMPLE

Top

    $ dzil install
    $ dzil install --install-command="cpan ."

OPTIONS

Top

--install-command

This defines what command to run after building the dist in the dist dir.

Any value that works with system|perlfunc/system is accepted.

If not specified, calls (roughly):

    perl -MCPAN -einstall "."

For more information, look at the install method in Dist::Zilla.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

use strict;
use warnings;
package Dist::Zilla::App::Command::install;
BEGIN {
  $Dist::Zilla::App::Command::install::VERSION = '4.200008';
}
# ABSTRACT: install your dist
use Dist::Zilla::App -command;

sub abstract { 'install your dist' }


sub opt_spec {
  [ 'install-command=s', 'command to run to install (e.g. "cpan .")' ],
}


sub execute {
  my ($self, $opt, $arg) = @_;

  $self->zilla->install({
    $opt->install_command
      ? (install_command => [ $opt->install_command ])
      : (),
  });
}

1;

__END__