commit | a1919ad6e006017a5a1a40b0205683dbaf315914 | [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> | Fri Aug 14 11:00:40 2020 +0200 |
tree | e5821bccd24928b41626005bfbbabb08473c49cb | |
parent | 7442f843d564345f9d3f4ecbeb51aa75c706c194 [diff] |
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 f015118..8398ab8 100755 --- a/tests/ssl-opt.sh +++ b/tests/ssl-opt.sh
@@ -657,7 +657,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"