blob: 0df40964e82129184c6abeabe28845f06ba696c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
if [ -f "/etc/bash/bash_completion.sh" ]; then source /etc/bash/bash_completion.sh; fi
if [ -f "$HOME/.config/git-completion.sh" ]; then source $HOME/.config/git-completion.sh; fi
# The next line updates PATH for the Google Cloud SDK.
if [ -f "$HOME/.gcloud/google-cloud-sdk/path.bash.inc" ]; then . "$HOME/.gcloud/google-cloud-sdk/path.bash.inc"; fi
# The next line enables shell command completion for gcloud.
if [ -f "$HOME/.gcloud/google-cloud-sdk/completion.bash.inc" ]; then . "$HOME/.gcloud/google-cloud-sdk/completion.bash.inc"; fi
|