Skip to content

Commit

Permalink
build_all.sh fix bug introduced in #9145
Browse files Browse the repository at this point in the history
/cc @valtron printf doesn't include trailing newline, unlike echo
  • Loading branch information
timotheecour authored and Araq committed Oct 8, 2018
1 parent 403f5ae commit 7cadb5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -u # error on undefined variables
set -e # exit on first error

echo_run(){
printf "\n$*"
printf "\n$*\n"
"$@"
}

Expand Down

0 comments on commit 7cadb5a

Please sign in to comment.