zsh: lowercase git branch for kubernetes commands
Alan Pearce alan@alanpearce.eu
Tue, 07 May 2019 17:15:17 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M zsh/.config/zsh/.zshrc → zsh/.config/zsh/.zshrc
@@ -218,7 +218,7 @@ check_kubectl_context () { if [[ "$PWD" =~ /kubernetes ]] then - git_branch=$(git rev-parse --abbrev-ref HEAD) + git_branch=$(git rev-parse --abbrev-ref HEAD | tr '[:upper:]' '[:lower:]') kubectl_context=$(kubectl config current-context) kubectl_namespace=$(kubectl config view -o jsonpath="{.contexts[?(@.name==\"${kubectl_context}\")].context.namespace}") case $git_branch in