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 01bbf36 commit f49703fCopy full SHA for f49703f
CHANGELOG.md
@@ -1,2 +1,3 @@
1
- Add initial delay when loading python functions (#8239)
2
- Enforce webframeworks enablement only on webframeworks sites (#8168)
3
+- Fix issue where `apps:init` throws an error upon app creation
src/commands/apps-init.ts
@@ -92,7 +92,7 @@ export const command = new Command("apps:init [platform] [appId]")
92
} catch (e) {
93
if ((e as Error).message.includes("associated with this Firebase project")) {
94
const projectId = needProjectId(options);
95
- await sdkInit(platform, { ...options, project: projectId });
+ await sdkInit(detectedPlatform, { ...options, project: projectId });
96
} else {
97
throw e;
98
}
0 commit comments