From 6d68c0b22d5822cba0ccea5ea46e540e6843e99e Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 26 Sep 2018 22:43:30 +0100 Subject: [PATCH] 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 --- script/misc/update-wiki-pages | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/script/misc/update-wiki-pages b/script/misc/update-wiki-pages index 84e1e8a1c..3f15c0df0 100755 --- a/script/misc/update-wiki-pages +++ b/script/misc/update-wiki-pages @@ -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 -- 2.43.2