fix unbound SKIP_TEST variable error

Signed-off-by: Akhil Mohan <akhilerm@gmail.com>
This commit is contained in:
Akhil Mohan
2025-05-01 15:46:44 +05:30
parent 9058ab4ae9
commit 3851bd5402

View File

@@ -71,7 +71,7 @@ EOF
fi
GINKGO_SKIP_TEST=()
if [ ! -z "$SKIP_TEST" ]; then
if [ -n "${SKIP_TEST:-}" ]; then
GINKGO_SKIP_TEST+=("--ginkgo.skip" "$SKIP_TEST")
fi