From d58a06c3233db9a70b97e50e4bdcf5834f166177 Mon Sep 17 00:00:00 2001 From: Athos Ribeiro Date: Fri, 2 Feb 2018 13:54:14 -0200 Subject: [PATCH] Fix string printed after compilation is done (#505) * Fix string printed after compilation is done On GNU coreutils 8.27, echo prints the \n occurrences as literals. This commit changes the calls to echo containing such character to calls to printf, and appends another \n in the end of the line. * Fix indent --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6a42d6547..eb8675795 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,8 @@ HELP_FUN = \ statusgo: ##@build Build status-go as statusd server go build -i -o $(GOBIN)/statusd -v -tags '$(BUILD_TAGS)' $(shell build/testnet-flags.sh) ./cmd/statusd - @echo "\nCompilation done.\nRun \"build/bin/statusd -h\" to view available commands." + @echo "Compilation done." + @echo "Run \"build/bin/statusd -h\" to view available commands." statusgo-cross: statusgo-android statusgo-ios @echo "Full cross compilation done."