Subject: | Test case may not use the correct perl executable |
t/01-updater.t contains the following:
my $updater = 'perl ./blocklist_updater';
I have several perl binaries on my machine, but this picks up the first
one in my $PATH. Instead of using 'perl', you could use $^X to pick up
the same binary I'm using at the time.
Tom Hukins