diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-17 14:58:50 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-17 14:58:50 +0000 |
commit | e27c4a80973519cad105a11c646777be6a722365 (patch) | |
tree | c19dc45a1ea2e2e85eb78d917b5f34bc654db052 /announce-gen | |
parent | 2eaffded08e098c65cb26a258331ab29196fca2f (diff) | |
download | coreutils-e27c4a80973519cad105a11c646777be6a722365.tar.xz |
(print_changelog_deltas): Use .sig suffix, not .asc.
Diffstat (limited to 'announce-gen')
-rwxr-xr-x | announce-gen | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/announce-gen b/announce-gen index ae79b0751..0c507d4de 100755 --- a/announce-gen +++ b/announce-gen @@ -6,7 +6,7 @@ use Getopt::Long; use Digest::MD5; use Digest::SHA1; -(my $VERSION = '$Revision: 1.19 $ ') =~ tr/[0-9].//cd; +(my $VERSION = '$Revision: 1.20 $ ') =~ tr/[0-9].//cd; (my $ME = $0) =~ s|.*/||; my %valid_release_types = map {$_ => 1} qw (alpha beta major); @@ -295,8 +295,8 @@ EOF print "\nHere are GPG detached signatures:\n"; foreach my $url (@url_dir_list) { - print " $url/$tgz.asc\n"; - print " $url/$tbz.asc\n"; + print " $url/$tgz.sig\n"; + print " $url/$tbz.sig\n"; } # FIXME: clean up upon interrupt or die |