Skip to content

Commit

Permalink
kube-init.sh: die is not a command
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Tomecek <[email protected]>
  • Loading branch information
TomasTomecek committed Jul 18, 2019
1 parent da8c843 commit 3543417
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/kube-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ done
# Shut down CI if minikube did not start and show logs
if [ $MINIKUBE_OK == "false" ]; then
sudo minikube logs
die $LINENO "minikube did not start"
echo "minikube did not start (line: ${LINENO})"
exit 1
fi

echo "Dump Kubernetes Objects..."
Expand Down

0 comments on commit 3543417

Please sign in to comment.