From 0ece83483d4a33ba58d93f9641711a18c5543f8b Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Wed, 27 Apr 2022 04:16:18 +0200 Subject: [PATCH] Makefile: avoid spurious echo Disable the printing of the echo commands that write the filename of the VM image for tests in the 'vm' and 'print-vm' targets. This makes it possible to use their outputs, especially the 'print-vm' target. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 43b78f5..4062940 100644 --- a/Makefile +++ b/Makefile @@ -150,11 +150,11 @@ $(VM_IMAGE): $(TARFILE) $(NODE_CACHE) bots test/vm.install # convenience target for the above vm: $(VM_IMAGE) - echo $(VM_IMAGE) + @echo $(VM_IMAGE) # convenience target to print the filename of the test image print-vm: - echo $(VM_IMAGE) + @echo $(VM_IMAGE) # convenience target to setup all the bits needed for the integration tests # without actually running them