From 0a210779d0b5466a8e7f684e76990ffdda98e9a1 Mon Sep 17 00:00:00 2001 From: Travis Rhoden Date: Tue, 20 Aug 2019 14:36:10 -0600 Subject: [PATCH] Fix build output location in release.sh Accidentally referenced "build/" instead of ".build/" --- hack/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/release.sh b/hack/release.sh index fbeb9ba54..b7277ec8f 100755 --- a/hack/release.sh +++ b/hack/release.sh @@ -161,8 +161,8 @@ function push_ccm_bin() { sha_sum ".build/bin/vsphere-cloud-controller-manager.linux_amd64" echo "copying ccm version ${VERSION} to ${bucket}" - gsutil cp "build/bin/vsphere-cloud-controller-manager.linux_amd64" "gs://${bucket}/${VERSION}/bin/linux/amd64/vsphere-cloud-controller-manager" - gsutil cp "build/bin/vsphere-cloud-controller-manager.linux_amd64.sha256" "gs://${bucket}/${VERSION}/bin/linux/amd64/vsphere-cloud-controller-manager.sha256" + gsutil cp ".build/bin/vsphere-cloud-controller-manager.linux_amd64" "gs://${bucket}/${VERSION}/bin/linux/amd64/vsphere-cloud-controller-manager" + gsutil cp ".build/bin/vsphere-cloud-controller-manager.linux_amd64.sha256" "gs://${bucket}/${VERSION}/bin/linux/amd64/vsphere-cloud-controller-manager.sha256" } # Start of main script