DhMakePerl::Command::refresh_cache - dh-make-perl refresh-cache implementation


DhMakePerl documentation Contained in the DhMakePerl distribution.

Index


Code Index:

NAME

Top

DhMakePerl::Command::refresh_cache - dh-make-perl refresh-cache implementation

DESCRIPTION

Top

This module implements the refresh-cache command of dh-make-perl(1).

METHODS

Top

execute

Provides refresh-cache command implementation.

COPYRIGHT & LICENSE

Top


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

use strict; use warnings;

use base 'DhMakePerl';

sub execute {
    my $self = shift;

    $self->get_apt_contents;

    return 0;
}

1;