We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f65dc2 commit ce76c77Copy full SHA for ce76c77
lib/commands/update.ts
@@ -32,7 +32,8 @@ export class UpdateCommand implements ICommand {
32
public async canExecute(args: string[]): Promise<boolean> {
33
const shouldMigrate = await this.$migrateController.shouldMigrate({
34
projectDir: this.$projectData.projectDir,
35
- platforms: [this.$devicePlatformsConstants.Android, this.$devicePlatformsConstants.iOS]
+ platforms: [this.$devicePlatformsConstants.Android, this.$devicePlatformsConstants.iOS],
36
+ allowInvalidVersions: true
37
});
38
39
if (shouldMigrate) {
0 commit comments