From 37a8a29095cf9b819125e4975016f55cf7673f5c Mon Sep 17 00:00:00 2001 From: Alexandre Menasria Date: Tue, 5 Nov 2024 15:08:54 +0100 Subject: [PATCH] Fix typo --- tasks/docker_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/docker_tasks.py b/tasks/docker_tasks.py index 296d92430289d..8fc2e6f2780c9 100644 --- a/tasks/docker_tasks.py +++ b/tasks/docker_tasks.py @@ -62,7 +62,7 @@ def dockerize_test(ctx, binary, skip_cleanup=False): ARG COMPOSE_SHA256=2f61856d1b8c9de29ffdaedaa1c6d0a5fc5c79da45068f1f4310feed8d3a3f61 RUN apt-get update && apt-get install -y ca-certificates curl RUN curl -SL "https://github.com/docker/compose/releases/download/v${COMPOSE_VERSION}/docker-compose-linux-x86_64" -o /usr/bin/compose -RUN echo "${COMPOSE_SHA} /usr/bin/compose" | sha256sum --check +RUN echo "${COMPOSE_SHA256} /usr/bin/compose" | sha256sum --check RUN chmod +x /usr/bin/compose # Final settings