From: Dylan William Hardison Date: Tue, 10 May 2016 14:30:02 +0000 (-0400) Subject: nit: include --skip-satisfied and --quiet for checksetup cpanm helper. X-Git-Tag: release-5.1.1~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fc1a89ae1e80027493cf1a54cd345169ad5a4548;p=thirdparty%2Fbugzilla.git nit: include --skip-satisfied and --quiet for checksetup cpanm helper. --- diff --git a/checksetup.pl b/checksetup.pl index ead6aa2d32..8650d06a84 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -73,8 +73,8 @@ if (defined $switch{cpanm}) { elsif ($feature eq 'default') { unshift @features, split(/\s+/, $default); } - elsif ($feature eq 'notest') { - push @cpanm_args, '--notest'; + elsif ($feature eq 'notest' || $feature eq 'skip-satisfied' || $feature eq 'quiet') { + push @cpanm_args, "--$feature"; } elsif ($feature =~ /^-(.+)$/) { push @cpanm_args, "--without-feature=$1";