Fix a duplicate error message on stub plan overrun

This commit is contained in:
Ivan Pozdeev 2022-05-03 19:10:09 +03:00
parent 864cd79980
commit e928e75f22

View file

@ -83,15 +83,6 @@ if [ -n "${!_STUB_END}" ]; then
# the requested index, we failed. # the requested index, we failed.
if [ $index -ge "${!_STUB_INDEX}" ]; then if [ $index -ge "${!_STUB_INDEX}" ]; then
eval "${_STUB_RESULT}"=1 eval "${_STUB_RESULT}"=1
{
echo "index: $index; stub index: ${!_STUB_INDEX}"
echo "plan:"
cat "${!_STUB_PLAN}"
echo "run:"
cat "${!_STUB_RUN}"
echo "log:"
cat "${!_STUB_LOG}"
} >&2
fi fi
if [ "${!_STUB_RESULT}" -ne 0 ]; then if [ "${!_STUB_RESULT}" -ne 0 ]; then
{ {