mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1217431 - Don't get 'latest' URLs for android updates; r=jlund
This commit is contained in:
parent
6addb61ebd
commit
1273e0fe57
@ -135,10 +135,15 @@ class MakeUploadOutputParser(OutputParser):
|
||||
# For android builds, the package is also used as the mar file.
|
||||
# Grab the first one, since that is the one in the
|
||||
# nightly/YYYY/MM directory
|
||||
if self.use_package_as_marfile and 'completeMarUrl' not in self.matches:
|
||||
self.info("Using package as mar file: %s" % m)
|
||||
self.matches['completeMarUrl'] = m
|
||||
u, self.package_filename = os.path.split(m)
|
||||
if self.use_package_as_marfile:
|
||||
if 'tinderbox-builds' in m or 'nightly/latest-' in m:
|
||||
self.info("Skipping wrong packageUrl: %s" % m)
|
||||
else:
|
||||
if 'completeMarUrl' in self.matches:
|
||||
self.fatal("Found multiple package URLs. Please update buildbase.py")
|
||||
self.info("Using package as mar file: %s" % m)
|
||||
self.matches['completeMarUrl'] = m
|
||||
u, self.package_filename = os.path.split(m)
|
||||
|
||||
if self.use_package_as_marfile and self.package_filename:
|
||||
# The checksum file is also dumped during 'make upload'. Look
|
||||
|
Loading…
Reference in New Issue
Block a user