Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix function name for 'sh' #3344

Merged
merged 1 commit into from
Jan 9, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions cluster/get-kube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ set -o errexit
set -o nounset
set -o pipefail

function create-cluster {
function create_cluster {
echo "Creating a kubernetes on ${KUBERNETES_PROVIDER:-gce}..."
(
cd kubernetes
Expand All @@ -54,7 +54,7 @@ function create-cluster {
}

if [[ "${KUBERNETES_SKIP_DOWNLOAD-}" ]]; then
create-cluster
create_cluster
exit 0
fi

Expand Down Expand Up @@ -113,5 +113,5 @@ echo "Unpacking kubernetes release ${release}"
tar -xzf ${file}
rm ${file}

create-cluster
create_cluster