mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-05-19 14:18:24 -04:00
build: fix typo in regex for Binaries: verification
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user