]> 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 14:30:02 +0000 (10:30 -0400)
checksetup.pl

index ead6aa2d32149281194c83f187631e71d56413f2..8650d06a8454aeafb9ce1aba2683da6a51479ccd 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";