You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* When using '=' with 'install -m", the resulting file permissions weren't right; here's what I found...
* mod() should be passed the original file to stat(), but it was being passed the target file after File::Copy::copy() created it
* Base permissions for "absolute" symbolic permissions (i.e. those set with '=') are zero, so it is not correct to stat() the original file in this case
* The statement clearing bits in perms-hash for operator '=' in loop should only clear bits for $who the current iteration looks at
%perl install -m u=rwx,g=rx,o=x comm a/comm # -m 751
%perl install -m u=rwx,g=r comm a/comm # -m 740
%perl perl install -m 'a=' comm a/comm # -m 0
0 commit comments