mirror of
https://github.com/Ne-Lexa/php-zip.git
synced 2025-01-17 23:38:19 +01:00
fix test
This commit is contained in:
parent
bb1a607d0d
commit
ac3533dece
@ -516,7 +516,7 @@ class ZipFile implements ZipFileInterface
|
|||||||
$zipData->copyDataToStream($handle);
|
$zipData->copyDataToStream($handle);
|
||||||
} catch (ZipException $e) {
|
} catch (ZipException $e) {
|
||||||
if (is_file($file)) {
|
if (is_file($file)) {
|
||||||
unlink($file);
|
@unlink($file);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw $e;
|
throw $e;
|
||||||
@ -1633,7 +1633,7 @@ class ZipFile implements ZipFileInterface
|
|||||||
|
|
||||||
if (!@rename($tempFilename, $filename)) {
|
if (!@rename($tempFilename, $filename)) {
|
||||||
if (is_file($tempFilename)) {
|
if (is_file($tempFilename)) {
|
||||||
unlink($tempFilename);
|
@unlink($tempFilename);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new ZipException(sprintf('Cannot move %s to %s', $tempFilename, $filename));
|
throw new ZipException(sprintf('Cannot move %s to %s', $tempFilename, $filename));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user