Commit 5db37437 authored by Pavel's avatar Pavel

Fixing "Cannot remove ...: Permission denied" in File and bundle:: task

Signed-off-by: 's avatarPavel <proger.xp@gmail.com>
parent 1192abe3
......@@ -54,6 +54,7 @@ abstract class Provider {
File::rmdir($work.'zip');
$zip->close();
@unlink($target);
}
......
......@@ -94,7 +94,7 @@ class File {
/**
* Extract the file extension from a file path.
*
*
* @param string $path
* @return string
*/
......@@ -273,8 +273,9 @@ class File {
}
}
if ($delete) rmdir($source);
unset($items);
if ($delete) @rmdir($source);
return true;
}
......@@ -306,6 +307,7 @@ class File {
}
}
unset($items);
if ( ! $preserve) @rmdir($directory);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment