install - Dummy module that prevents unexpected results from the CPAN shell


install documentation Contained in the install distribution.

Index


Code Index:

NAME

Top

install - Dummy module that prevents unexpected results from the CPAN shell

DESCRIPTION

Top

Many people at one time or another mistakenly ask the CPAN shell to install the 'install' module:

    $ cpan install Foo

Unlike lots of package managers, the CPAN shell doesn't use commands like 'install' so this tries to install the 'install' module as well as the 'Foo' module.

This 'install' module does absolutely nothing except install and has no prerequisites so nothing bad will happen when this mistake is made.

SEE ALSO

Top

CPAN

AUTHOR

Top

David Golden, <dagolden@cpan.org>

COPYRIGHT AND LICENSE

Top


install documentation Contained in the install distribution.

package install;
use 5.006;
use strict;
our $VERSION = '0.01';

1;
__END__