From c8de5d4279c72fd237c3e9f575a9ae51d36ddb59 Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Fri, 7 Oct 2022 10:27:10 +0200 Subject: [PATCH] zsh: gcloud --- .zshrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index ae33a96..5200793 100644 --- a/.zshrc +++ b/.zshrc @@ -225,8 +225,9 @@ autoload -U +X bashcompinit && bashcompinit complete -o nospace -C /usr/bin/mcli mcli complete -C '/usr/bin/aws_completer' aws + # The next line updates PATH for the Google Cloud SDK. -if [ -f '/tmp/google-cloud-sdk/path.zsh.inc' ]; then . '/tmp/google-cloud-sdk/path.zsh.inc'; fi +if [ -f '/home/dln/google-cloud-sdk/path.zsh.inc' ]; then . '/home/dln/google-cloud-sdk/path.zsh.inc'; fi # The next line enables shell command completion for gcloud. -if [ -f '/tmp/google-cloud-sdk/completion.zsh.inc' ]; then . '/tmp/google-cloud-sdk/completion.zsh.inc'; fi +if [ -f '/home/dln/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/dln/google-cloud-sdk/completion.zsh.inc'; fi