From 8438601e7d0a033daa98c8087eefbb81cce860f1 Mon Sep 17 00:00:00 2001 From: Aram Price Date: Thu, 28 Sep 2023 15:19:43 -0700 Subject: [PATCH] Stop using `\n` in `echo` This does not produce a new-line on Windows, so we `echo ""` instead. Signed-off-by: Brian Cunnie --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e61578cd..75ee7d92 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,8 @@ test : units units : format generate-fake-stemcell-automation @go run github.com/onsi/ginkgo/v2/ginkgo version go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-all --randomize-suites --keep-going --skip-package integration,iaas_cli - @echo "\nSWEET SUITE SUCCESS" + @echo "" + @echo "SWEET SUITE SUCCESS" contract : go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-all --randomize-suites --keep-going --flake-attempts 2 iaas_cli