Skip to content

Commit

Permalink
Fixed initializeWithoutExplicitIDAsync not being used
Browse files Browse the repository at this point in the history
  • Loading branch information
mymattcarroll committed Aug 19, 2024
1 parent 35546a5 commit 6b08d9e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/eas-cli/src/commands/project/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export default class ProjectInit extends EasCommand {
description: 'ID of the EAS project to link',
}),
force: Flags.boolean({
description: 'Whether to create a new project/link an existing project without additional prompts or overwrite any existing project ID when running with --id flag',
description:
'Whether to create a new project/link an existing project without additional prompts or overwrite any existing project ID when running with --id flag',
}),
...EASNonInteractiveFlag,
};
Expand Down Expand Up @@ -417,7 +418,7 @@ export default class ProjectInit extends EasCommand {
});
idForConsistency = idArgument;
} else {
idForConsistency = await ProjectInit.initializeWithInteractiveSelectionAsync(
idForConsistency = await ProjectInit.initializeWithoutExplicitIDAsync(
graphqlClient,
actor,
projectDir,
Expand Down

0 comments on commit 6b08d9e

Please sign in to comment.