1
0
Fork 0

Fix missing argument for getLastBackupVersion()

pull/5116/head
vlakoff 2016-03-27 00:25:17 +01:00
parent f542b0f32d
commit 47d196f37f
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ EOT
// remove all backups except for the most recent, if any
if ($input->getOption('clean-backups')) {
$this->cleanBackups($rollbackDir, $this->getLastBackupVersion());
$this->cleanBackups($rollbackDir, $this->getLastBackupVersion($rollbackDir));
}
return 0;