From 1469ae57d6fd79c06a2abe9cf78ca4ac6a5b5b06 Mon Sep 17 00:00:00 2001 From: Marko Budiselic Date: Sun, 25 May 2025 10:39:21 -0700 Subject: [PATCH] Add gcloud to zshrc --- env-available/macos-m1-12/zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/env-available/macos-m1-12/zshrc b/env-available/macos-m1-12/zshrc index dd4a6ae..29bda89 100644 --- a/env-available/macos-m1-12/zshrc +++ b/env-available/macos-m1-12/zshrc @@ -117,3 +117,9 @@ case ":$PATH:" in *) export PATH="$PNPM_HOME:$PATH" ;; esac # pnpm end + +# The next line updates PATH for the Google Cloud SDK. +if [ -f '/Users/buda/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/buda/Downloads/google-cloud-sdk/path.zsh.inc'; fi + +# The next line enables shell command completion for gcloud. +if [ -f '/Users/buda/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/buda/Downloads/google-cloud-sdk/completion.zsh.inc'; fi