Skip to content

Commit ef4ff15

Browse files
authored
Make script more descriptive
1 parent b6c325b commit ef4ff15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/e2e/local/minikube/setup_minikube_env.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ if [ $? -ne 0 ]; then
1111
exit 1
1212
fi
1313
fi
14+
echo "Port Forwarding is Setup"
1415

1516
# Check if minikube docker environment is setup.
16-
docker info | grep "localhost:5000"
17+
docker info | grep "localhost:5000" > /dev/null
1718
if [ $? -ne 0 ]; then
1819
echo "Minikube docker environment not setup. Trying to set it up."
1920
eval $(minikube docker-env)
@@ -22,3 +23,4 @@ if [ $? -ne 0 ]; then
2223
exit 1
2324
fi
2425
fi
26+
echo "Minikube docker environment is setup for this shell"

0 commit comments

Comments
 (0)