From 9aa7a7e97a238fca73ffbe9cc50ab7dae3c55cf3 Mon Sep 17 00:00:00 2001 From: WoodProgrammer Date: Mon, 5 Jun 2023 02:40:02 +0300 Subject: [PATCH] wrong target fix --- hack/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hack/install.sh b/hack/install.sh index 32296e2..16788e3 100755 --- a/hack/install.sh +++ b/hack/install.sh @@ -28,7 +28,7 @@ on_exit() { trap on_exit EXIT version="$(cat plugin.yaml | grep "version" | cut -d '"' -f 2)" -echo "Downloading and installing helm-migrate v${version} ..." +echo "Downloading and installing helm-migrate ${version} ..." arch="" case "$(uname -m)" in @@ -51,8 +51,8 @@ case "$(uname)" in ;; esac -binary_url="https://github.com/WoodProgrammer/helm-migrate/releases/download/v${version}/helm-migrate_${version}_${os}_${arch}.tar.gz" -checksum_url="https://github.com/WoodProgrammer/helm-migrate/releases/download/v${version}/helm-migrate_${version}_checksums.txt" +binary_url="https://github.com/WoodProgrammer/helm-migrate/releases/download/${version}/helm-migrate_${version}_${os}_${arch}.tar.gz" +checksum_url="https://github.com/WoodProgrammer/helm-migrate/releases/download/${version}/helm-migrate_${version}_checksums.txt" mkdir -p "bin" mkdir -p "releases/${version}"