Add gcloud completion

pull/1381/head
Travis Swicegood 2019-05-24 15:10:48 -05:00
parent 9b4a049571
commit 93905c3663
1 changed files with 9 additions and 0 deletions

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