File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,10 @@ function lint() {
6868
6969# # deps - updates project dependencies to latest
7070function deps() {
71+ npm config set registry https://registry.npmjs.org/ --project
72+ npm cache clean --force
7173 npm update --save
74+ npm config delete registry --project
7275}
7376
7477# write_e2e_env - Loads secrets from the gcloud project and writes
@@ -111,8 +114,7 @@ function write_e2e_env(){
111114 fi
112115
113116 echo " Getting test secrets from $TEST_PROJECT into $outfile "
114- local_user=$( gcloud auth list --format ' value(account)' | tr -d ' \n' )
115-
117+ local_user=$( gcloud auth list --format ' value(account)' | grep ' @google.com' | tr -d ' \n' )
116118 echo " Getting test secrets from $TEST_PROJECT into $1 "
117119 {
118120 for env_name in " ${secret_vars[@]} " ; do
You can’t perform that action at this time.
0 commit comments