Skip to content

Commit

Permalink
wrong target fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WoodProgrammer committed Jun 4, 2023
1 parent e45523f commit 9aa7a7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hack/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}"
Expand Down

0 comments on commit 9aa7a7e

Please sign in to comment.