From 55a47ff317173467550f570dbeb819be6526fe2f Mon Sep 17 00:00:00 2001 From: shabbir-genetech Date: Wed, 31 Jul 2024 15:32:56 +0500 Subject: [PATCH] ci: fix output formatting (#5942) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 31b7c57a..3abc30e4 100644 --- a/Makefile +++ b/Makefile @@ -81,8 +81,8 @@ endif info: ## Gather information about the runtime environment echo "whoami: $$(whoami)"; \ echo "pwd: $$(pwd)"; \ - echo "IMAGE:" $(IMAGE) \ - echo "SUPER_LINTER_TEST_CONTAINER_URL:" $(SUPER_LINTER_TEST_CONTAINER_URL) \ + echo "IMAGE:" $(IMAGE); \ + echo "SUPER_LINTER_TEST_CONTAINER_URL:" $(SUPER_LINTER_TEST_CONTAINER_URL); \ echo "ls -ahl: $$(ls -ahl)"; \ docker images; \ docker ps; \