setup: Do not use umask(0)

chmod is not affected in any way by the umask.
This commit is contained in:
Eric Lippmann 2014-12-30 15:40:06 +01:00
parent fbe252063b
commit d3dcf152fb
1 changed files with 0 additions and 2 deletions

View File

@ -35,9 +35,7 @@ class MakeDirStep extends Step
$success = false;
} else {
$this->errors[$path] = null;
$old = umask(0);
chmod($path, $this->dirmode);
umask($old);
}
}
}