mirror of
https://github.com/nushell/nushell.git
synced 2025-05-12 18:54:34 +00:00
# Description
Fixes how the directory permissions are calculated in `mkdir`. Instead
of subtraction, the umask is actually used as a mask via negation
followed by bitwise and with the default mode. This matches how [uucore
calculates](cac7155fba/src/uu/mkdir/src/mkdir.rs (L61)
)
the mode.