Skip to content

Commit 3c82f8c

Browse files
committed
Use correct kind bin in backend/kind/up_if_not_exists.sh
1 parent 3451ed4 commit 3c82f8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/kind/up_if_not_exists.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if [ -n "$EKCP_HOST" ]; then
3232
echo "Remote cluster already exists, skipping creation"
3333
fi
3434
else
35-
if [ -z $(./kind get clusters | grep ${CLUSTER_NAME}) ]; then
35+
if [ -z $(kind get clusters | grep ${CLUSTER_NAME}) ]; then
3636
echo "Local cluster doesn't exist, creating now"
3737
kind create cluster --config kind-config.yaml --name=${CLUSTER_NAME}
3838
else

0 commit comments

Comments
 (0)