Skip to content

Commit

Permalink
Merge pull request #29 from mxgross/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mxgross committed Nov 4, 2020
2 parents 0d6e91c + 7070065 commit 466e82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Controller/EasyBackupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ private function backupDatabase(string $sqlDumpName)
$this->filesystem->touch($sqlDumpName);

foreach ($outputArr as $line) {
if (!$this->startsWith('[Warning]', $line)) {
if (!$this->startsWith('mysqldump: [Warning]', $line)) {
$this->filesystem->appendToFile($sqlDumpName, $line."\n");
}
}
Expand Down

0 comments on commit 466e82f

Please sign in to comment.