mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 03:15:45 +01:00
Fix misuse of printf in shell script
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
7442f843d5
commit
a1919ad6e0
@ -657,7 +657,7 @@ run_test() {
|
|||||||
|
|
||||||
# run the commands
|
# run the commands
|
||||||
if [ -n "$PXY_CMD" ]; then
|
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_CMD >> $PXY_OUT 2>&1 &
|
||||||
PXY_PID=$!
|
PXY_PID=$!
|
||||||
wait_proxy_start "$PXY_PORT" "$PXY_PID"
|
wait_proxy_start "$PXY_PORT" "$PXY_PID"
|
||||||
|
Loading…
Reference in New Issue
Block a user