mirror of
https://github.com/openSUSE/osc.git
synced 2025-02-04 02:26:16 +01:00
use percent-quoted url for download url generation
We need to percent-quote base urls because they will be used in named-percent-substitution afterwards.
This commit is contained in:
parent
754af85423
commit
8ba078a872
@ -188,12 +188,10 @@ class Buildinfo:
|
|||||||
self.pathes.append(node.get('project')+"/"+node.get('repository'))
|
self.pathes.append(node.get('project')+"/"+node.get('repository'))
|
||||||
# a hash providing the matching URL for specific repos for newer OBS instances
|
# a hash providing the matching URL for specific repos for newer OBS instances
|
||||||
if node.get('url'):
|
if node.get('url'):
|
||||||
url = node.get('url').replace('%', '%%')
|
baseurl = node.get('url').replace('%', '%%')
|
||||||
if config['api_host_options'][apiurl]['downloadurl']:
|
if config['api_host_options'][apiurl]['downloadurl']:
|
||||||
# Add the path element to the download url override.
|
# Add the path element to the download url override.
|
||||||
baseurl = config['api_host_options'][apiurl]['downloadurl'] + urlsplit(node.get('url'))[2]
|
baseurl = config['api_host_options'][apiurl]['downloadurl'] + urlsplit(node.get('url'))[2]
|
||||||
else:
|
|
||||||
baseurl = node.get('url')
|
|
||||||
self.urls[node.get('project')+"/"+node.get('repository')] = baseurl + '/%(arch)s/%(filename)s'
|
self.urls[node.get('project')+"/"+node.get('repository')] = baseurl + '/%(arch)s/%(filename)s'
|
||||||
|
|
||||||
self.vminstall_list = [ dep.name for dep in self.deps if dep.vminstall ]
|
self.vminstall_list = [ dep.name for dep in self.deps if dep.vminstall ]
|
||||||
|
Loading…
Reference in New Issue
Block a user