aboutsummaryrefslogtreecommitdiff
path: root/modulemanager
diff options
context:
space:
mode:
authorGravatar Peter Powell2016-11-08 08:15:25 +0000
committerGravatar Peter Powell2016-11-08 08:15:25 +0000
commit63a00a858cb482624cc5d3b357cbc25958fd8112 (patch)
tree229474d8aa506fd2c6e8c946de9339a2f5fec4f5 /modulemanager
parentMerge pull request #1233 from Natolumin/sanitize-gecos (diff)
Workaround modern Perls not adding . to @INC.
Diffstat (limited to 'modulemanager')
-rwxr-xr-xmodulemanager1
1 files changed, 1 insertions, 0 deletions
diff --git a/modulemanager b/modulemanager
index af5bf113c..b107f2c1f 100755
--- a/modulemanager
+++ b/modulemanager
@@ -25,6 +25,7 @@ use warnings FATAL => qw(all);
use make::configure;
BEGIN {
+ push @INC, '.';
unless (module_installed("LWP::Simple")) {
die "Your system is missing the LWP::Simple Perl module!";
}