summary refs log tree commit diff stats
path: root/build_all.sh
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2018-10-03 16:15:52 -0700
committerAndreas Rumpf <rumpf_a@web.de>2018-10-08 14:07:09 +0200
commit7cadb5a65d20a9c08d3bc1c9ab9f182b764e7364 (patch)
treeb21ce5a67ccb0686c24288f41c9217ebed03bd1d /build_all.sh
parent403f5aea1468f8e686134834e72c8ba326688643 (diff)
downloadNim-7cadb5a65d20a9c08d3bc1c9ab9f182b764e7364.tar.gz
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
Diffstat (limited to 'build_all.sh')
-rw-r--r--build_all.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_all.sh b/build_all.sh
index 7b809b06a..a268cb791 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"
   "$@"
 }