summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 4faeb8131..c99bae118 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -422,13 +422,13 @@ sub psUsingHdlist {
$block .= $_;
if ($inside_block =~ /E/) {
push @{$m->{pubkey}}, { block => $block, content => $content };
- $block = $content = '';
- next;
+ $block = $content = undef;
+ } else {
+ #- now compute content (for finding the right key).
+ chomp;
+ /^$/ and $content = '';
+ defined $content and $content .= $_;
}
- #- now compute content (for finding the right key).
- chomp;
- my $inside_content = /^$/ ... /^-----END PGP PUBLIC KEY BLOCK-----$/;
- $inside_content > 1 and $content .= $_;
}
}