-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Directories always generated with permissions 755 #158
Comments
Sorry for leaving this ticket open and unanswered for such a long time. I yet have to determine what I'm doing differently compared to the other tools you mentioned and how to fix this for phpDox. |
Looks good! Thank you for hanging in there. "old" version:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I want my Jenkins & Phing CI setup to generate all directories with permissions 775 and files with permissions 664 by default. In order to accomplish this I edited
etc/init.d/jenkins
to pass the argument--umask=002
when calling the daemon. This works for all generated files and directories generated by PHPUnit, PHPMD, PHPCPD, PHP_CodeSniffer etc.Files generated by phpdox have the permission 664, so that's fine. The problem is that the directories are generated with 755 instead of 775.
My setup:
Output of
ps auxxx | grep jenkins
:My phing call:
phpdox.exec=/usr/local/bin/phpdox
phpdox.config.file=${phing.dir}/resources/phpdox.xml
My
phpdox.xml
:The
html
andxml
directories generated by Jenkins targetprepare
:The files and directories generated by Jenkins target
phpdox
:Could this be related to phpdox or one of its dependencies?
Thanks for your help! Please tell me if you need more input.
The text was updated successfully, but these errors were encountered: