mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 23:40:29 +03:00
build: fix typo in regex for Binaries: verification
This commit is contained in:
parent
3d69e767d8
commit
6097caef91
1 changed files with 1 additions and 1 deletions
|
|
@ -1126,7 +1126,7 @@ def main():
|
|||
url = url.replace('%v', build.versionName)
|
||||
url = url.replace('%c', str(build.versionCode))
|
||||
logging.info("...retrieving " + url)
|
||||
of = re.sub(r'.apk$', '.binary.apk', common.get_release_filename(app, build))
|
||||
of = re.sub(r'\.apk$', '.binary.apk', common.get_release_filename(app, build))
|
||||
of = os.path.join(binaries_dir, of)
|
||||
try:
|
||||
net.download_file(url, local_filename=of)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue