Stop wiki update script trying to be "helpful"
Instead of trying to advise how to import some (but not all) of the modules, just require them in the normal way. Closes #1763
This commit is contained in:
parent
d0e45c7c8e
commit
6d68c0b22d
1 changed files with 3 additions and 12 deletions
|
@ -3,20 +3,11 @@ use 5.010;
|
|||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Pod::Usage ();
|
||||
use Getopt::Long ();
|
||||
|
||||
BEGIN {
|
||||
eval "require MediaWiki::API; require YAML::XS;" or do {
|
||||
print "You have to install some modules via CPAN to run this:\n";
|
||||
print " sudo cpanp MediaWiki::API YAML::XS\n";
|
||||
exit 1;
|
||||
};
|
||||
}
|
||||
|
||||
use Getopt::Long;
|
||||
use Pod::Usage;
|
||||
use MediaWiki::API;
|
||||
use Test::More qw(no_plan);
|
||||
use YAML::XS qw(Dump);
|
||||
use Test::More 'no_plan';
|
||||
|
||||
=head1 NAME
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue