Skip to content

Commit bf75067

Browse files
committed
Fix mysql command not returning output (regression)
1 parent f1a624f commit bf75067

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/CliTools/Console/Command/AbstractCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ protected function execSqlCommand($sql, $database = null)
361361
$command->addArgumentTemplate('-D %s', $database);
362362
}
363363

364-
$command->execute()->getOutput();
364+
return $command->execute()->getOutput();
365365
}
366366

367367

0 commit comments

Comments
 (0)