Closed nifr closed 2 years ago
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs.
This bot triages issues and PRs according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle stale
/lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle stale
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs.
This bot triages issues and PRs according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/remove-lifecycle rotten
/close
Please send feedback to sig-contributor-experience at kubernetes/community.
/lifecycle rotten
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs.
This bot triages issues and PRs according to the following rules:
lifecycle/stale
is appliedlifecycle/stale
was applied, lifecycle/rotten
is appliedlifecycle/rotten
was applied, the issue is closedYou can:
/reopen
/remove-lifecycle rotten
Please send feedback to sig-contributor-experience at kubernetes/community.
/close
@k8s-triage-robot: Closing this issue.
Scenario
I set
KREW_ROOT
to${XDG_DATA_HOME}/krew
. I add${KREW_ROOT}/bin
toPATH
after runningkrew completion [..]
.Note: I'm using
zsh
.Result
I get a misleading warning.
Code
Misleading Warning
Issues
KREW_ROOT
export PATH="${PATH}:${KREW_ROOT:-"${HOME}/.krew"}/bin"
krew completion
commandbin
dir inPATH
bin
dir toPATH
after loading completions still results in a working setupNotes
I'm aware that it is possible to get rid of the warning by loading the completions after adding krew's
bin
dir toPATH
.