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

This reverts commit e93e8f6330.
This commit is contained in:
Johannes Meyer 2015-01-30 15:47:21 +01:00
parent d2dd66c9fd
commit a95fd561cd
1 changed files with 2 additions and 2 deletions

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