diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2018-10-03 16:15:52 -0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-08 14:07:09 +0200 |
commit | 7cadb5a65d20a9c08d3bc1c9ab9f182b764e7364 (patch) | |
tree | b21ce5a67ccb0686c24288f41c9217ebed03bd1d /build_all.sh | |
parent | 403f5aea1468f8e686134834e72c8ba326688643 (diff) | |
download | Nim-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.sh | 2 |
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" "$@" } |