diff --git a/src/commands/dev-env-sync-sql.js b/src/commands/dev-env-sync-sql.js index 126628690b..880c6a0b85 100644 --- a/src/commands/dev-env-sync-sql.js +++ b/src/commands/dev-env-sync-sql.js @@ -177,9 +177,10 @@ export class DevEnvSyncSQLCommand { const importOptions = { inPlace: true, skipValidate: true, + quiet: true, }; const importCommand = new DevEnvImportSQLCommand( this.sqlFile, importOptions, this.slug ); - await importCommand.run( true ); + await importCommand.run(); } /**