Subject: | Setting allow_build_interactivity prevents force from working |
Hi,
The following code:
use CPANPLUS::Backend;
my $cb = CPANPLUS::Backend->new();
$cb->configure_object()->set_conf( 'allow_build_interactivity', 0 );
$cb->configure_object()->set_conf( 'force', 1 );
$cb->install( modules => ['Some-Module'] );
Will not install a module if it already exists on the system. However,
turning on "allow_build_interactivity", it does install (as you would
expect).
Unless I've misinterpreted the meaning of these config values, this
would seem to be a bug.
(using perl 5.8.8 on Ubuntu 8.04).
Thanks.