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 4bce411 commit 8b03313Copy full SHA for 8b03313
packages/amplify-cli/src/commands/gen2-migration.ts
@@ -51,9 +51,10 @@ export const run = async (context: $TSContext) => {
51
52
const implementation: AmplifyMigrationStep = new step.class(context);
53
54
+ printer.info('Validating');
55
+ await implementation.validate();
56
+
57
try {
- printer.info('Validating');
- await implementation.validate();
58
printer.info('Executing');
59
await implementation.execute();
60
} catch (error: unknown) {
0 commit comments