mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-16 02:40:08 +00:00
fix(gcloud): source path.zsh.inc
always (#11901)
This commit is contained in:
parent
cdd7dab5db
commit
91cd5341b9
1 changed files with 3 additions and 5 deletions
|
@ -29,12 +29,10 @@ if [[ -z "${CLOUDSDK_HOME}" ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if (( ${+CLOUDSDK_HOME} )); then
|
if (( ${+CLOUDSDK_HOME} )); then
|
||||||
# Only source this if gcloud isn't already on the path
|
# Source path file
|
||||||
if (( ! $+commands[gcloud] )); then
|
|
||||||
if [[ -f "${CLOUDSDK_HOME}/path.zsh.inc" ]]; then
|
if [[ -f "${CLOUDSDK_HOME}/path.zsh.inc" ]]; then
|
||||||
source "${CLOUDSDK_HOME}/path.zsh.inc"
|
source "${CLOUDSDK_HOME}/path.zsh.inc"
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
# Look for completion file in different paths
|
# Look for completion file in different paths
|
||||||
for comp_file (
|
for comp_file (
|
||||||
|
|
Loading…
Reference in a new issue