diff --git a/infra/helper.py b/infra/helper.py index 389afce9a..1b788db8f 100755 --- a/infra/helper.py +++ b/infra/helper.py @@ -557,7 +557,7 @@ def download_corpus(project_name): print('Downloading corpus for %s project' % project_name) thread_pool = ThreadPool(multiprocessing.cpu_count()) - return not False in thread_pool.map(_download_for_single_target, fuzz_targets) + return all(thread_pool.map(_download_for_single_target, fuzz_targets)) def profile(args):