mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1243873 - KEY file missing for releases, r=bhearsum DONTBUILD
This commit is contained in:
parent
67bbd0f5d1
commit
73def78b05
@ -211,7 +211,14 @@ class ChecksumsGenerator(BaseScript, VirtualenvMixin, SigningMixin, VCSMixin):
|
||||
self.fatal("Failed to sign {}".format(sums))
|
||||
|
||||
def upload(self):
|
||||
files = []
|
||||
# we need to provide the public side of the gpg key so that people can
|
||||
# verify the detached signatures
|
||||
dirs = self.query_abs_dirs()
|
||||
tools_dir = path.join(dirs["abs_work_dir"], "tools")
|
||||
self.copyfile(os.path.join(tools_dir, 'scripts', 'release', 'KEY'),
|
||||
'KEY')
|
||||
files = ['KEY']
|
||||
|
||||
for fmt in self.config["formats"]:
|
||||
files.append(self._get_sums_filename(fmt))
|
||||
files.append("{}.asc".format(self._get_sums_filename(fmt)))
|
||||
|
Loading…
Reference in New Issue
Block a user