Revert "setup: Fix octdec for directory modes"

This reverts commit c0444a81b2.
This commit is contained in:
Johannes Meyer 2015-01-30 15:47:11 +01:00
parent 6416fc421c
commit d2dd66c9fd
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class MakeDirStep extends Step
public function __construct($paths, $dirmode) public function __construct($paths, $dirmode)
{ {
$this->paths = $paths; $this->paths = $paths;
$this->dirmode = octdec((string) $dirmode); $this->dirmode = octdec($dirmode);
$this->errors = array(); $this->errors = array();
} }