From ec63bfbd4735585dc6d0a0a3f19c203bd50df6f3 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Tue, 6 Dec 2022 18:25:56 +0100 Subject: [PATCH] feat(init): Use absolute path for eget 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 } }