From 9db92530de15b75ac2e1a7dcfe8a6f46513d2ffa Mon Sep 17 00:00:00 2001 From: valtron Date: Mon, 1 Oct 2018 10:27:13 -0600 Subject: [PATCH] fix: echo "\n" not portable --- build_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_all.sh b/build_all.sh index 701d7d2042..7b809b06ab 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(){ - echo "\n$@" + printf "\n$*" "$@" }