1
0
Fork 0

Cambiamenti per esecuzione corretta verifica online.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Emiliano Vavassori 2023-01-05 01:24:37 +01:00
parent 9cf3119489
commit ae9668554a
1 changed files with 7 additions and 3 deletions

View File

@ -119,9 +119,13 @@ class Build(loaih.RemoteBuild):
# Remote storage. I have to query a remote site to know if it
# was already built.
name = self.appimagefilename[arch]
matching = etree.HTML(urllib.request.urlopen(str.join('/',
self.relative_path.insert(0, self.storage_path)
)).read()).xpath(
if len(self.relative_path) > 0:
path_arr = self.relative_path.insert(0, self.storage_path)
else:
path_arr = [ self.storage_path, '' ]
matching = etree.HTML(urllib.request.urlopen(
str.join('/', path_arr)
).read()).xpath(
f"//a[contains(@href, '{name}')/@href"
)