`mkdir` uses mode 1411, not 777
Closed this issue · 2 comments
hdgarrood commented
Because mkdir uses a file mode of 777 decimal (as opposed to 777 octal), it will create directories that the owner is not allowed to write into (amongst other things). The created directory actually ends up having permissions 1411, since 777 in decimal is 1411 in octal.
I think the fix should be simply to get #11 merged. Is there anything I can do to help with this?
michaelficarra commented
It looks like that PR is ready to go. A maintainer should just merge it.
hdgarrood commented
Awesome, thanks. Done.