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 9e08c3b commit e13a4c5Copy full SHA for e13a4c5
packages/@ionic/cli/src/lib/integrations/capacitor/index.ts
@@ -72,7 +72,7 @@ export class Integration extends BaseIntegration<ProjectIntegration> {
72
if (details.enableArgs && details.enableArgs.length > 0) {
73
const parsedArgs = parseArgs(details.enableArgs);
74
75
- name = parsedArgs._[0] || name;
+ name = String(parsedArgs._[0]) || name;
76
packageId = parsedArgs._[1] || packageId;
77
78
if (parsedArgs['web-dir']) {
0 commit comments