diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-12-20 12:55:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-20 12:55:29 +0100 |
commit | 17373debe99396449534391aa26fe5f5eef74ce9 (patch) | |
tree | b5cfe1072f0866258864598e49342bcf4eda8ee3 | |
parent | 8332ac6a1d694e015b8d0e0b3913b0f3f15cf4de (diff) | |
parent | 8fc9a4e58355286c11322466a54a6f6a18942c2c (diff) |
Merge pull request #7411 from edolstra/no-gpg
Remove GPG-signing of releases
-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"; } |