(travis) Work around a bad tradeoff in cperl-5.24-to-be
Peter Rabbitson [Wed, 8 Jun 2016 07:47:56 +0000 (09:47 +0200)]
https://github.com/perl11/cperl/issues/153#issuecomment-224515895
http://irclog.perlgeek.de/perl11/2016-06-08#i_12624951

maint/travis-ci_scripts/30_before_script.bash

index 71bf162..10932d3 100755 (executable)
@@ -27,6 +27,11 @@ if is_cperl ; then
   # (cperl 5.22.2 comes with YAML already)
   perl -M5.022002 -e1 &>/dev/null || installdeps YAML
 
+  # Work around cperl's Test::More being typed, by getting the CPAN one
+  # https://github.com/perl11/cperl/issues/153#issuecomment-224515895
+  # ( in the long term this is sadly a nail in cperl's coffin :/ )
+  installdeps Test::More
+
 fi