From 5046b39d583f6505ddc3c567959e074bb398e2da Mon Sep 17 00:00:00 2001 From: alesapin Date: Thu, 11 Nov 2021 18:20:10 +0300 Subject: [PATCH] Download tgz --- tests/ci/split_build_smoke_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/split_build_smoke_check.py b/tests/ci/split_build_smoke_check.py index 41afe113815..fbb64bc5feb 100644 --- a/tests/ci/split_build_smoke_check.py +++ b/tests/ci/split_build_smoke_check.py @@ -102,7 +102,7 @@ def dowload_build_with_progress(url, path): def download_builds(result_path, build_urls): for url in build_urls: - if url.endswith('.deb'): + if url.endswith('.tgz'): fname = os.path.basename(url) logging.info("Will download %s to %s", fname, result_path) dowload_build_with_progress(url, os.path.join(result_path, fname))