Skip to content

Commit

Permalink
Merge pull request kubernetes-client#873 from TomasTomecek/fix-die
Browse files Browse the repository at this point in the history
kube-init.sh: die is not a command
  • Loading branch information
k8s-ci-robot authored Jul 18, 2019
2 parents 02358ec + 3543417 commit b519de1
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 b519de1

Please sign in to comment.