We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2a226f + ccd24b3 commit ba0cfb2Copy full SHA for ba0cfb2
bin/cpan-install-dist-deps
@@ -5,3 +5,9 @@ set -eux
5
if [[ -e cpanfile ]];then
6
cpm install -g --cpanfile cpanfile --with-recommends --with-suggests --show-build-log-on-failure "$@"
7
fi
8
+
9
+if [[ -e Build.PL ]]; then
10
+ # This will install both build and dist deps
11
+ perl Build.PL
12
+ PERL_MM_USE_DEFAULT=1 ./Build installdeps --cpan_client 'cpm install -g --show-build-log-on-failure' || true
13
+fi
0 commit comments