1
0
Fork 0

Merge pull request #5116 from vlakoff/self-update-2

Fix missing argument for getLastBackupVersion()
pull/5124/head
Jordi Boggiano 2016-03-27 10:50:23 +02:00
commit a188db237b
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 // remove all backups except for the most recent, if any
if ($input->getOption('clean-backups')) { if ($input->getOption('clean-backups')) {
$this->cleanBackups($rollbackDir, $this->getLastBackupVersion()); $this->cleanBackups($rollbackDir, $this->getLastBackupVersion($rollbackDir));
} }
return 0; return 0;