From 9a4f3ac019d3dc3d9154db6b434f717623c4c0e2 Mon Sep 17 00:00:00 2001 From: Marcus Hoffmann Date: Mon, 15 Jan 2018 01:08:23 +0100 Subject: [PATCH] Revert "build: bump max_apps_per_run to 50" This reverts commit 56a53055bef857d7cf0f76eb7b485a2f6e85ac2a. Revert "build: limit --all to 10 apps at a time" This reverts commit afc5cc6b6a969bb1f12eb325df436eaadac53099. --- fdroidserver/build.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fdroidserver/build.py b/fdroidserver/build.py index a431dd52..61cda139 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -1138,11 +1138,7 @@ def main(): # Build applications... failed_apps = {} build_succeeded = [] - max_apps_per_run = 50 for appid, app in apps.items(): - max_apps_per_run -= 1 - if max_apps_per_run < 1: - break first = True -- 2.30.2