From 3efbdf455adbf90a6c4628baadce5c11c4818809 Mon Sep 17 00:00:00 2001 From: Matthew Christopher Date: Thu, 25 Apr 2024 11:11:05 -0700 Subject: [PATCH] Download cmctl from new path (#3971) --- .devcontainer/install-dependencies.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/install-dependencies.sh b/.devcontainer/install-dependencies.sh index cb56d47b915..b67fe52b12d 100755 --- a/.devcontainer/install-dependencies.sh +++ b/.devcontainer/install-dependencies.sh @@ -270,7 +270,8 @@ fi write-verbose "Checking for $TOOL_DEST/cmctl" if should-install "$TOOL_DEST/cmctl"; then write-info "Installing cmctl-${os}_${arch}..." - curl -L "https://github.com/jetstack/cert-manager/releases/latest/download/cmctl-${os}-${arch}.tar.gz" | tar -xz -C "$TOOL_DEST" + curl -fL "https://github.com/cert-manager/cmctl/releases/latest/download/cmctl_${os}_${arch}" --output "$TOOL_DEST/cmctl" + chmod +x "$TOOL_DEST/cmctl" fi write-verbose "Checking for $BUILDX_DEST/docker-buildx"