Revert "setup: Convert octal directory mode to decimal notation"
This reverts commit e93e8f6330
.
This commit is contained in:
parent
d2dd66c9fd
commit
a95fd561cd
|
@ -16,12 +16,12 @@ class MakeDirStep extends Step
|
|||
|
||||
/**
|
||||
* @param array $paths
|
||||
* @param int $dirmode Directory mode in octal notation
|
||||
* @param int $dirmode
|
||||
*/
|
||||
public function __construct($paths, $dirmode)
|
||||
{
|
||||
$this->paths = $paths;
|
||||
$this->dirmode = octdec($dirmode);
|
||||
$this->dirmode = $dirmode;
|
||||
$this->errors = array();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue