File tree 4 files changed +6
-9
lines changed
4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -35,11 +35,6 @@ export const authOrigin = () =>
35
35
utils . envOverride ( "FIREBASE_AUTH_URL" , "https://accounts.google.com" ) ;
36
36
export const consoleOrigin = ( ) =>
37
37
utils . envOverride ( "FIREBASE_CONSOLE_URL" , "https://console.firebase.google.com" ) ;
38
- export const deployOrigin = ( ) =>
39
- utils . envOverride (
40
- "FIREBASE_DEPLOY_URL" ,
41
- utils . envOverride ( "FIREBASE_UPLOAD_URL" , "https://deploy.firebase.com" ) ,
42
- ) ;
43
38
export const dynamicLinksOrigin = ( ) =>
44
39
utils . envOverride ( "FIREBASE_DYNAMIC_LINKS_URL" , "https://firebasedynamiclinks.googleapis.com" ) ;
45
40
export const dynamicLinksKey = ( ) =>
Original file line number Diff line number Diff line change @@ -254,5 +254,5 @@ export async function getGitRepositoryLink(
254
254
* Returns email associated with the Developer Connect Service Agent
255
255
*/
256
256
export function serviceAgentEmail ( projectNumber : string ) : string {
257
- return `service-${ projectNumber } @${ developerConnectP4SAOrigin } ` ;
257
+ return `service-${ projectNumber } @${ developerConnectP4SAOrigin ( ) } ` ;
258
258
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { Client } from "../apiv2";
5
5
const API_VERSION = "v2" ;
6
6
7
7
const adminApiClient = new Client ( {
8
- urlPrefix : identityOrigin + "/admin" ,
8
+ urlPrefix : identityOrigin ( ) + "/admin" ,
9
9
apiVersion : API_VERSION ,
10
10
} ) ;
11
11
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ export async function initGitHub(setup: Setup): Promise<void> {
206
206
`Visit this URL to revoke authorization for the Firebase CLI GitHub OAuth App:` ,
207
207
) ;
208
208
logger . info (
209
- bold ( underline ( `https://github.com/settings/connections/applications/${ githubClientId } ` ) ) ,
209
+ bold ( underline ( `https://github.com/settings/connections/applications/${ githubClientId ( ) } ` ) ) ,
210
210
) ;
211
211
logLabeledBullet ( "Action required" , `Push any new workflow file(s) to your repo` ) ;
212
212
}
@@ -442,7 +442,9 @@ async function promptForRepo(
442
442
) ;
443
443
logger . info (
444
444
bold (
445
- underline ( `https://github.com/settings/connections/applications/${ githubClientId } ` ) ,
445
+ underline (
446
+ `https://github.com/settings/connections/applications/${ githubClientId ( ) } ` ,
447
+ ) ,
446
448
) ,
447
449
) ;
448
450
logger . info ( ) ;
You can’t perform that action at this time.
0 commit comments