From 69e944d56a45081152562da0e4e1e52929b4e5d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Tue, 22 Aug 2023 10:27:21 +0200 Subject: [PATCH] Revert "Fix LinuxTest package installation commands" This reverts commit 82fb7b277d211f206f0ed2edda9186e46e300816. --- tests/LinuxTest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/LinuxTest.py b/tests/LinuxTest.py index e5ef717e1..0a5fe2815 100644 --- a/tests/LinuxTest.py +++ b/tests/LinuxTest.py @@ -31,9 +31,9 @@ class LinuxTest(Test): if proc.returncode != 0: raise Exception("docker run failed (linux stack)") if distro in ("ubuntu", "debian"): - cmd = "apt install -y /opt/\\$(ls /opt | grep deb)" + cmd = "apt install -y /opt/\$(ls /opt | grep deb)" elif distro in ("centos", "fedora", "rhel"): - cmd = "dnf install -y /opt/\\$(ls /opt | grep rpm)" + cmd = "dnf install -y /opt/\$(ls /opt | grep rpm)" proc = LinuxTest.docker_exec(distro, cmd) if proc.returncode != 0: raise Exception("docker exec apt install failed (linux stack)")