fix: echo "\n" not portable

This commit is contained in:
valtron
2018-10-01 10:27:13 -06:00
parent fcbb00b97a
commit 9db92530de

View File

@@ -6,7 +6,7 @@ set -u # error on undefined variables
set -e # exit on first error
echo_run(){
echo "\n$@"
printf "\n$*"
"$@"
}