]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
nit: include --skip-satisfied and --quiet for checksetup cpanm helper.
authorDylan William Hardison <dylan@hardison.net>
Tue, 10 May 2016 14:30:02 +0000 (10:30 -0400)
committerDylan William Hardison <dylan@hardison.net>
Tue, 10 May 2016 20:46:12 +0000 (16:46 -0400)
checksetup.pl

index 1b82d1f5f28f5b1df9133f5234b340b9466b9b11..e6061b3922dcf8d84ab465594cc88ee00da11aec 100755 (executable)
@@ -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";