Rename to .completion.bash so it can be disabled correctly

This commit is contained in:
Travis Swicegood
2019-05-24 15:14:13 -05:00
parent 93905c3663
commit 1bdcc66d5a

View File

@@ -0,0 +1,9 @@
#/usr/bin/env bash
# Bash completion for Google Cloud SDK
if which gcloud >/dev/null 2>&1; then
GOOGLE_SDK_ROOT=${GOOGLE_SDK_ROOT:-$(gcloud info --format="value(installation.sdk_root)")}
for i in $(ls ${GOOGLE_SDK_ROOT}/*.bash.inc); do
source $i
done
fi