DhMakePerl::Command::dump_config - dh-make-perl dump-config implementation


DhMakePerl documentation Contained in the DhMakePerl distribution.

Index


Code Index:

NAME

Top

DhMakePerl::Command::dump_config - dh-make-perl dump-config implementation

METHODS

Top

execute

The main command entry point.

COPYRIGHT & LICENSE

Top


DhMakePerl documentation Contained in the DhMakePerl distribution.
package DhMakePerl::Command::dump_config;

use strict; use warnings;

use base 'DhMakePerl';

sub execute {
    my $self = shift;

    print $self->cfg->dump_config;

    return 0;
}


1;