We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0435d57 commit 58195b8Copy full SHA for 58195b8
resources/scripts/setup_minikube.sh
@@ -63,6 +63,15 @@ else
63
ERROR_CODE=1
64
fi
65
66
+minikube_path=$(command -v minikube || true)
67
+if [ -n "$minikube_path" ]; then
68
+ print_partial_message " ⭐️ Found " "minikube" ": $minikube_path " "$BOLD"
69
+else
70
+ print_partial_message " 💥 Could not find " "minikube" ". Please follow this link to install it..." "$BOLD"
71
+ print_message "" " https://minikube.sigs.k8s.io/docs/start/" "$BOLD"
72
+ ERROR_CODE=127
73
+fi
74
+
75
if [ $ERROR_CODE -ne 0 ]; then
76
print_message "" "There were errors in the setup process. Please fix them and try again." "$BOLD"
77
exit $ERROR_CODE
0 commit comments