mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Merge pull request #554 from derekbassett/Prompt_Hang_Kubecontext_Minikube
Fixed prompt hangs on kubectl version command
This commit is contained in:
commit
92ff579d5b
1 changed files with 1 additions and 1 deletions
|
@ -1366,7 +1366,7 @@ prompt_dir_writable() {
|
|||
|
||||
# Kubernetes Current Context
|
||||
prompt_kubecontext() {
|
||||
local kubectl_version=$(kubectl version 2>/dev/null)
|
||||
local kubectl_version=$(kubectl version --client 2>/dev/null)
|
||||
|
||||
if [[ -n "$kubectl_version" ]]; then
|
||||
# Get the current Kubernetes config context's namespaece
|
||||
|
|
Loading…
Reference in a new issue