1
0
Fork 0

Merge pull request #3688 from jeremy-derusse/improve-selfupdate-chmod

Reuse current file permissions in selfupdate
pull/3580/merge
Jordi Boggiano 2015-01-29 18:25:30 +00:00
commit 27ce5ec336
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ EOT
protected function setLocalPhar($localFilename, $newFilename, $backupTarget = null)
{
try {
@chmod($newFilename, 0777 & ~umask());
@chmod($newFilename, fileperms($localFilename));
if (!ini_get('phar.readonly')) {
// test the phar validity
$phar = new \Phar($newFilename);