We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 235cf3a commit a9f4f5aCopy full SHA for a9f4f5a
src/index.ts
@@ -100,9 +100,11 @@ async function run() {
100
}
101
endGroup();
102
103
- // Try to get the project id from an project alias
+ // ProjectId may be an alias. Try to get the real project id from .firebaserc
104
const parsedProjectId = getProjectIdByAlias(projectId) || projectId;
105
- const hostname = target ? `${target}.web.app` : `${parsedProjectId}.web.app`;
+ const hostname = target
106
+ ? `${target}.web.app`
107
+ : `${parsedProjectId}.web.app`;
108
const url = `https://${hostname}/`;
109
110
await finish({
0 commit comments