@google-cloud/nodejs-common 1.9.0 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/install_functions.sh +2 -1
- package/package.json +1 -1
package/bin/install_functions.sh
CHANGED
|
@@ -1933,7 +1933,8 @@ check_firestore_existence() {
|
|
|
1933
1933
|
local firestore mode appRegion
|
|
1934
1934
|
mode="${1}"
|
|
1935
1935
|
appRegion="${2}"
|
|
1936
|
-
firestore=$(gcloud firestore databases list
|
|
1936
|
+
firestore=$(gcloud firestore databases list \
|
|
1937
|
+
--filter="name:(default)" --format="csv[no-heading](type)")
|
|
1937
1938
|
if [[ -z "${firestore}" ]]; then
|
|
1938
1939
|
printf '%s\n' "Firestore is not ready. Creating a new Firestore database\
|
|
1939
1940
|
is an irreversible operation, so read carefully before continue:"
|