docker: exec $CMD
This is the last command to run (unless DEBUG), make it 'exec' to simplify the process tree. Signed-off-by: Fam Zheng <famz@redhat.com> Message-Id: <1474429768-25027-10-git-send-email-famz@redhat.com> Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
97cba1a1d1
commit
9b77336d83
@ -57,14 +57,17 @@ cd "$QEMU_SRC/tests/docker"
|
|||||||
|
|
||||||
CMD="$QEMU_SRC/tests/docker/$@"
|
CMD="$QEMU_SRC/tests/docker/$@"
|
||||||
|
|
||||||
if test -n "$DEBUG"; then
|
if test -z "$DEBUG"; then
|
||||||
echo "* Prepared to run command:"
|
exec $CMD
|
||||||
echo " $CMD"
|
|
||||||
echo "* Hit Ctrl-D to continue, or type 'exit 1' to abort"
|
|
||||||
echo
|
|
||||||
$SHELL
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# DEBUG workflow
|
||||||
|
echo "* Prepared to run command:"
|
||||||
|
echo " $CMD"
|
||||||
|
echo "* Hit Ctrl-D to continue, or type 'exit 1' to abort"
|
||||||
|
echo
|
||||||
|
$SHELL
|
||||||
|
|
||||||
if "$CMD"; then
|
if "$CMD"; then
|
||||||
exit 0
|
exit 0
|
||||||
elif test -n "$DEBUG"; then
|
elif test -n "$DEBUG"; then
|
||||||
|
Loading…
Reference in New Issue
Block a user