commit | a3b994fa4d12cb1063029b3afa7ac1dbaa457126 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com> | Mon Jul 27 09:45:32 2020 +0200 |
committer | Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com> | Mon Jul 27 09:45:32 2020 +0200 |
tree | bdcbfb69c19f322b69b794159b920ce14cbfc784 | |
parent | 8779e9a70b626207839cfc7faa30b3435878c5f4 [diff] [blame] |
Fix misuse of printf in shell script Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
diff --git a/tests/ssl-opt.sh b/tests/ssl-opt.sh index 6008837..4e69a73 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh
@@ -701,7 +701,7 @@ # run the commands if [ -n "$PXY_CMD" ]; then - printf "# $NAME\n$PXY_CMD\n" > $PXY_OUT + printf "# %s\n%s\n" "$NAME" "$PXY_CMD" > $PXY_OUT $PXY_CMD >> $PXY_OUT 2>&1 & PXY_PID=$! wait_proxy_start "$PXY_PORT" "$PXY_PID"