diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-12-06 14:00:38 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-12-06 14:00:38 +0100 |
commit | 8fc9a4e58355286c11322466a54a6f6a18942c2c (patch) | |
tree | 8441af8a8014da3e560a1d64653896c42743e00e | |
parent | 54906bc93c0db36b03ac76b67594403261ffd377 (diff) |
Remove GPG-signing of releases
This makes it easier for others to make releases, and probably few
people care about GPG signatures anyway.
-rwxr-xr-x | maintainers/upload-release.pl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/maintainers/upload-release.pl b/maintainers/upload-release.pl index d3ef63db8..77469148a 100755 --- a/maintainers/upload-release.pl +++ b/maintainers/upload-release.pl @@ -115,10 +115,6 @@ sub downloadFile { write_file("$tmpFile.sha256", $sha256_actual); - if (! -e "$tmpFile.asc") { - system("gpg2 --detach-sign --armor $tmpFile") == 0 or die "unable to sign $tmpFile\n"; - } - return $sha256_expected; } @@ -194,7 +190,7 @@ for my $fn (glob "$tmpDir/*") { my $configuration = (); $configuration->{content_type} = "application/octet-stream"; - if ($fn =~ /.sha256|.asc|install/) { + if ($fn =~ /.sha256|install/) { # Text files $configuration->{content_type} = "text/plain"; } |