diff --git a/docs/Makefile b/docs/Makefile index f7cc17637..1e918ce19 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -32,7 +32,7 @@ get-version: # get latest tag $(eval version=$(shell sh -c "git for-each-ref refs/tags --sort=-taggerdate --format='%(refname)' --count=1 | sed 's|refs/tags/v||'")) # query bintray for the corresponding artifact version - $(eval bintray_version=$(shell sh -c "wget -qO - https://api.bintray.com/packages/lightbend/cloudflow-cli/kubectl-cloudflow2 | jq -r '.versions[] | select( . | startswith(\"cloudflow_v${version}\") )'")) + $(eval bintray_version=$(shell sh -c "wget -qO - https://api.bintray.com/packages/lightbend/cloudflow-cli/kubectl-cloudflow | jq -r '.versions[] | select( . | startswith(\"cloudflow_v${version}\") )'")) set-antora-versions: get-version yq write shared-content-source/docs/base-antora.yml version "${version}" > shared-content-source/docs/antora.yml diff --git a/docs/shared-content-source/docs/modules/get-started/pages/prepare-development-environment.adoc b/docs/shared-content-source/docs/modules/get-started/pages/prepare-development-environment.adoc index 0fbccb9f7..72d98a2a6 100644 --- a/docs/shared-content-source/docs/modules/get-started/pages/prepare-development-environment.adoc +++ b/docs/shared-content-source/docs/modules/get-started/pages/prepare-development-environment.adoc @@ -23,11 +23,11 @@ First, make sure that you have the following installed: Using one of the links below, download the Cloudflow CLI appropriate for your development platform. Install it on your local system by unzipping the archive and moving the executable into your `PATH`. -* https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow2-{kubectl-plugin-version}-linux-amd64.tar.gz[Linux] +* https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow-{kubectl-plugin-version}-linux-amd64.tar.gz[Linux] -* https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow2-{kubectl-plugin-version}-darwin-amd64.tar.gz[MacOS] +* https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow-{kubectl-plugin-version}-darwin-amd64.tar.gz[MacOS] -* https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow2-{kubectl-plugin-version}-windows-amd64.tar.gz[Windows] +* https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow-{kubectl-plugin-version}-windows-amd64.tar.gz[Windows] Please make sure you have the executable in your path with proper permission settings. For Linux or MacOS, put the executables in `/usr/local/bin` with permission settings of `755`. diff --git a/integration-tests/Makefile b/integration-tests/Makefile index 6a3d2b53b..ae11fd565 100644 --- a/integration-tests/Makefile +++ b/integration-tests/Makefile @@ -24,8 +24,8 @@ prepare-swiss-knife: .PHONY: prepare-itest-osx prepare-itest-osx: @echo '****** Download and unpack kubectl-cloudflow plugin' - $(eval bintray_version=$(shell sh -c "wget -qO - https://api.bintray.com/packages/lightbend/cloudflow-cli/kubectl-cloudflow2 | jq -r '.versions[] | select( . | startswith(\"cloudflow_v${version}\") )'")) - (wget https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow2-${bintray_version}-darwin-amd64.tar.gz -O kubectl_cloudflow.tar.gz && \ + $(eval bintray_version=$(shell sh -c "wget -qO - https://api.bintray.com/packages/lightbend/cloudflow-cli/kubectl-cloudflow | jq -r '.versions[] | select( . | startswith(\"cloudflow_v${version}\") )'")) + (wget https://bintray.com/lightbend/cloudflow-cli/download_file?file_path=kubectl-cloudflow-${bintray_version}-darwin-amd64.tar.gz -O kubectl_cloudflow.tar.gz && \ tar -zxf kubectl_cloudflow.tar.gz --directory itest && \ xattr -d com.apple.quarantine itest/kubectl-cloudflow | true)