Skip to content

Commit

Permalink
fix(cli): avoid overlap texts
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed Oct 17, 2023
1 parent 34900c5 commit 8f80324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/Task/MysqlDumpTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class MysqlDumpTask extends TaskAbstract<MysqlDumpTaskConfigType> {
items: [tableName],
database: this.config.database,
onSpawn: (p) => (controller.stop = () => p.kill()),
...(concurrency !== 1 && {
...(concurrency === 1 && {
onProgress(progress) {
data.onProgress({
relative: {
Expand Down

0 comments on commit 8f80324

Please sign in to comment.