Revert "setup: Convert octal directory mode to decimal notation"

This reverts commit e93e8f633045d7fd0f844e797848d4d6fe32ca9e.
This commit is contained in:
Johannes Meyer 2015-01-30 15:47:21 +01:00
parent d2dd66c9fd
commit a95fd561cd

View File

@ -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();
}