Paul Libbrecht wrote:



Also, I wanted to request a small post-processing command, maybe to be inserted as a property, to allow anything created in this repository to be flagged group-writable. Where should I set this ? Should I go into the maven source ?


Perhaps set the umask in your maven script / profile

umask 002

Also, you might want to consider setting g+rws which will make creation of files sticky to the group of the folder they are in.

In "shellish" -

umask 002
mkdir fred
chown joe.jim fred
chmod g+rws fred
mkdir fred/ned

ned will be owned by the group jim and have permissions
u+rwx,g+rwxs,o+rx


Cheers,


Ben


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to