Merge pull request #131066 from pohly/test-e2e-ginkgo-wait-fix

hack/ginkgo-e2e.sh: fix misplaced brackets
This commit is contained in:
Kubernetes Prow Robot
2025-04-23 19:30:36 -07:00
committed by GitHub

View File

@@ -233,7 +233,7 @@ EOF
kill -TERM "-${GINKGO_CLI_PID}" || true
echo "Waiting for Ginkgo with pid ${GINKGO_CLI_PID}..."
wait "{$GINKGO_CLI_PID}"
wait "${GINKGO_CLI_PID}"
echo "Ginkgo terminated."
fi
}