setup: Convert octal directory mode to decimal notation
PHP's chmod sets wrong permissions when using 2770 as directory mode for example. fixes #8233
This commit is contained in:
parent
35e090c17e
commit
e93e8f6330
|
@ -16,12 +16,12 @@ class MakeDirStep extends Step
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $paths
|
* @param array $paths
|
||||||
* @param int $dirmode
|
* @param int $dirmode Directory mode in octal notation
|
||||||
*/
|
*/
|
||||||
public function __construct($paths, $dirmode)
|
public function __construct($paths, $dirmode)
|
||||||
{
|
{
|
||||||
$this->paths = $paths;
|
$this->paths = $paths;
|
||||||
$this->dirmode = $dirmode;
|
$this->dirmode = octdec($dirmode);
|
||||||
$this->errors = array();
|
$this->errors = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue