summary refs log tree commit diff stats
path: root/build_all.sh
diff options
context:
space:
mode:
authorvaltron <valtron2000@gmail.com>2018-10-01 10:27:13 -0600
committervaltron <valtron2000@gmail.com>2018-10-01 10:27:13 -0600
commit9db92530de15b75ac2e1a7dcfe8a6f46513d2ffa (patch)
tree74af25e385c7839f772d2d691208f08071e631de /build_all.sh
parentfcbb00b97ac54c75514646616ce89d9260173049 (diff)
downloadNim-9db92530de15b75ac2e1a7dcfe8a6f46513d2ffa.tar.gz
fix: echo "\n" not portable
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 701d7d204..7b809b06a 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$*"
   "$@"
 }