Skip to content

Commit 6e1b7d3

Browse files
author
Christian Loos
committed
make --skip work again
8a91645 removed 'skip => 1' from verify() but missed to change the logic in the cpansign script for the skip option parsing.
1 parent 6713563 commit 6e1b7d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/cpansign

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ my $cmd = $cmd{substr($op, 0, 1)};
5353
(system("perldoc $0"), exit) if $cmd eq 'help';
5454
my @args;
5555
push @args, (overwrite => '1') if $cmd eq 'sign';
56-
push @args, (skip => '0') unless grep /^-?-?skip/, @ARGV;
56+
push @args, (skip => '1') if grep /^-?-?skip/, @ARGV;
5757

5858
if (my $sub = Module::Signature->can($cmd)) {
5959
if (@ARGV and -e $ARGV[-1]) {

0 commit comments

Comments
 (0)