summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2016-05-10 16:30:02 +0200
committerDylan William Hardison <dylan@hardison.net>2016-05-10 16:30:02 +0200
commitfc1a89ae1e80027493cf1a54cd345169ad5a4548 (patch)
treef158c7a564f4c2e9cba3623a7748f0b9dc7f154b /checksetup.pl
parent31317bc348532126d299bd89370b0e51e5831f31 (diff)
downloadbugzilla-fc1a89ae1e80027493cf1a54cd345169ad5a4548.tar.gz
bugzilla-fc1a89ae1e80027493cf1a54cd345169ad5a4548.tar.xz
nit: include --skip-satisfied and --quiet for checksetup cpanm helper.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl
index ead6aa2d3..8650d06a8 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";