File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,14 @@ import { writeSync, existsSync } from "fs";
2020// Set up Google Application Credentials for use by the Firebase CLI
2121// https://cloud.google.com/docs/authentication/production#finding_credentials_automatically
2222export async function createGacFile ( googleApplicationCredentials : string ) {
23+ console . debug ( "processing GAC credentials: " + googleApplicationCredentials )
2324 try {
2425 if ( existsSync ( googleApplicationCredentials ) ) {
2526 return googleApplicationCredentials ;
2627 }
2728 }
2829 catch ( e ) {
30+ console . log ( "failed to check existence of %s\nerror: %O" , googleApplicationCredentials , e )
2931 // googleApplicationCredentials is not a path to a file
3032 }
3133 const tmpFile = fileSync ( { postfix : ".json" } ) ;
You can’t perform that action at this time.
0 commit comments