From 962d292246231ac14222de956c4fb791fed8aa23 Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Mon, 16 Oct 2023 15:26:41 +0200 Subject: [PATCH] Typo (extra space) --- common_factories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_factories.py b/common_factories.py index f17860bc..50574cb1 100644 --- a/common_factories.py +++ b/common_factories.py @@ -100,7 +100,7 @@ def getRpmAutobakeFactory(mtrDbPool): "sh", "-c", util.Interpolate(""" - wget --no-check-certificate -cO ../MariaDB-shared-5.3.%(kw:arch)s.rpm " """ + os.getenv('ARTIFACTS_URL', default='https://ci.mariadb.org') + """/helper_files/mariadb-shared-5.3-%(kw:arch)s.r pm" && wget -cO ../MariaDB-shared-10.1.%(kw:arch)s.rpm " """ + os.getenv('ARTIFACTS_URL', default='https://ci.mariadb.org') + """/helper_files/mariadb-shared-10.1-kvm-rpm-%(kw:rpm_type)s-%(kw:arch)s.rpm"', + wget --no-check-certificate -cO ../MariaDB-shared-5.3.%(kw:arch)s.rpm " """ + os.getenv('ARTIFACTS_URL', default='https://ci.mariadb.org') + """/helper_files/mariadb-shared-5.3-%(kw:arch)s.rpm" && wget -cO ../MariaDB-shared-10.1.%(kw:arch)s.rpm " """ + os.getenv('ARTIFACTS_URL', default='https://ci.mariadb.org') + """/helper_files/mariadb-shared-10.1-kvm-rpm-%(kw:rpm_type)s-%(kw:arch)s.rpm"', arch=getArch, rpm_type=util.Property("rpm_type"), """),