1
0
Fork 0

Merge pull request #559 from stloyd/patch-2

[TarDownloader] Force overwrite if previous extract failed and was not r...
pull/558/merge
Jordi Boggiano 2012-04-10 04:48:27 -07:00
commit 9cacff3de5
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ class TarDownloader extends ArchiveDownloader
{
// Can throw an UnexpectedValueException
$archive = new \PharData($file);
$archive->extractTo($path);
$archive->extractTo($path, null, true);
}
}