From e1a1c497708a550137c091028a2f8b776e390cf4 Mon Sep 17 00:00:00 2001 From: dabruh <11458706-dabruh@users.noreply.gitlab.com> Date: Fri, 15 Sep 2023 13:41:56 +0200 Subject: [PATCH] Adjust Krew installation dir --- .config/shell/profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/shell/profile b/.config/shell/profile index a2d877e..0ec53bc 100644 --- a/.config/shell/profile +++ b/.config/shell/profile @@ -14,6 +14,7 @@ export XDG_CACHE_HOME="$HOME/.cache" export XDG_CONFIG_HOME="$HOME/.config" export XDG_DATA_HOME="$HOME/.local/share" export CARGO_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/cargo" +export KREW_ROOT="${XDG_DATA_HOME:-$HOME/.local/share}/krew" export GOPATH="${XDG_DATA_HOME:-$HOME/.local/share}/go" export HISTFILE="${XDG_DATA_HOME:-$HOME/.local/share}/history" export XINITRC="${XDG_CONFIG_HOME:-$HOME/.config}/x11/xinitrc" @@ -90,7 +91,7 @@ append_path_with_entries() { prepend_paths=( "$HOME/.local/bin" "$HOME/.cargo/bin" - "${KREW_ROOT:-$HOME/.krew}/bin" + "$KREW_ROOT/bin" ) append_paths=()