1
0
Fork 0

Fix permissions when using the PearBinaryInstaller

The PearBinaryInstaller is old and not used by many people, so the
world writable permissions weren't caught
pull/7075/merge
Patrick Rose 2018-02-09 10:05:46 +00:00 committed by Jordi Boggiano
parent f857da7c29
commit b90987fdeb
1 changed files with 2 additions and 2 deletions

View File

@ -61,9 +61,9 @@ class PearBinaryInstaller extends BinaryInstaller
{ {
parent::initializeBinDir(); parent::initializeBinDir();
file_put_contents($this->binDir.'/composer-php', $this->generateUnixyPhpProxyCode()); file_put_contents($this->binDir.'/composer-php', $this->generateUnixyPhpProxyCode());
@chmod($this->binDir.'/composer-php', 0777); @chmod($this->binDir.'/composer-php', 0777 & ~umask());
file_put_contents($this->binDir.'/composer-php.bat', $this->generateWindowsPhpProxyCode()); file_put_contents($this->binDir.'/composer-php.bat', $this->generateWindowsPhpProxyCode());
@chmod($this->binDir.'/composer-php.bat', 0777); @chmod($this->binDir.'/composer-php.bat', 0777 & ~umask());
} }
protected function generateWindowsProxyCode($bin, $link) protected function generateWindowsProxyCode($bin, $link)