Skip to content

Commit 3067bbf

Browse files
committed
hack/ginkgo-e2e.sh: fix misplaced brackets
If the script got killed, it failed to wait properly: Waiting for Ginkgo with pid 73873... ./hack/ginkgo-e2e.sh: line 236: wait: `{73873}': not a pid or valid job spec
1 parent 0eaee48 commit 3067bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/ginkgo-e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ EOF
233233
kill -TERM "-${GINKGO_CLI_PID}" || true
234234

235235
echo "Waiting for Ginkgo with pid ${GINKGO_CLI_PID}..."
236-
wait "{$GINKGO_CLI_PID}"
236+
wait "${GINKGO_CLI_PID}"
237237
echo "Ginkgo terminated."
238238
fi
239239
}

0 commit comments

Comments
 (0)