about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/capsule.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/capsule.sh b/scripts/capsule.sh
index 4d1b097..7411639 100755
--- a/scripts/capsule.sh
+++ b/scripts/capsule.sh
@@ -32,7 +32,8 @@ do
     elif [ -f 'Build.PL' ]; then
         echo "Found Build.PL, using Build.PL"
         perl Build.PL
-        ./Build installdeps
+        # ./Build installdeps is not available in older Module::Build's
+        cpanm --installdeps .
         HARNESS_VERBOSE=1 ./Build test --verbose >> $logfile 2>&1
     else
         echo "Hoping to find Makefile.PL"