From ce83124992963187fdae2d42bbd3034c777a023e Mon Sep 17 00:00:00 2001 From: Lyon Till <158992+ljtill@users.noreply.github.com> Date: Sun, 9 Feb 2025 15:51:56 +0000 Subject: [PATCH] fix: unnecessary file removal --- src/helm/devcontainer-feature.json | 4 ++-- src/helm/install.sh | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/helm/devcontainer-feature.json b/src/helm/devcontainer-feature.json index 6798164..4871f6f 100644 --- a/src/helm/devcontainer-feature.json +++ b/src/helm/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "helm", - "version": "1.2.0", + "version": "1.2.1", "name": "Helm", "description": "Command line tool (helm)", "documentationURL": "https://helm.sh/docs", @@ -12,4 +12,4 @@ } }, "customizations": {} -} +} \ No newline at end of file diff --git a/src/helm/install.sh b/src/helm/install.sh index 1aad97f..9ecfb95 100644 --- a/src/helm/install.sh +++ b/src/helm/install.sh @@ -81,7 +81,6 @@ install_binary() { log "INFO" "Installing Helm..." tar -zxof ./helm.tar.gz install -m 0755 ./linux-${ARCH}/helm /usr/local/bin/helm - rm -rf ./linux-${ARCH} log "INFO" "Helm installed successfully to /usr/local/bin/helm" }