From 7d34ba8ed9f76f8e20ef9cacfd29f82889529135 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Tue, 6 Dec 2022 18:02:30 +0000 Subject: [PATCH] feat(init): Use absolute path for eget (#860) Signed-off-by: rjshrjndrn Signed-off-by: rjshrjndrn --- scripts/helmcharts/init.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/helmcharts/init.sh b/scripts/helmcharts/init.sh index 546607f92..e3d043a12 100644 --- a/scripts/helmcharts/init.sh +++ b/scripts/helmcharts/init.sh @@ -61,19 +61,19 @@ function install_tools() { ## installing stern, log viewer for K8s exists stern || { info "$install_status Stern" - sudo eget -q --to /usr/local/bin stern/stern + sudo /usr/local/bin/eget -q --to /usr/local/bin stern/stern } ## installing k9s, TUI K8s exists k9s || { info "$install_status K9s" - sudo eget -q --to /usr/local/bin derailed/k9s + sudo /usr/local/bin/eget -q --to /usr/local/bin derailed/k9s } ## installing helm, package manager for K8s exists helm || { info "$install_status Helm" - sudo eget -q --to /usr/local/bin https://get.helm.sh/helm-v3.10.2-linux-amd64.tar.gz -f helm + sudo /usr/local/bin/eget -q --to /usr/local/bin https://get.helm.sh/helm-v3.10.2-linux-amd64.tar.gz -f helm } }