From 7cadb5a65d20a9c08d3bc1c9ab9f182b764e7364 Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Wed, 3 Oct 2018 16:15:52 -0700 Subject: [PATCH] build_all.sh fix bug introduced in https://github.com/nim-lang/Nim/pull/9145 /cc @valtron printf doesn't include trailing newline, unlike echo --- build_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_all.sh b/build_all.sh index 7b809b06ab76f..a268cb7913b97 100644 --- a/build_all.sh +++ b/build_all.sh @@ -6,7 +6,7 @@ set -u # error on undefined variables set -e # exit on first error echo_run(){ - printf "\n$*" + printf "\n$*\n" "$@" }