fix(mkdir): Use lower case for arg names (#2590)

Co-authored-by: Chay Nabors <nabochay@amazon.com>
This commit is contained in:
Daniel Imms
2025-05-05 10:14:55 -07:00
committed by GitHub
parent 4cfa1442e0
commit fbcc870723

View File

@@ -10,7 +10,7 @@ const completionSpec: Fig.Spec = {
{
name: ["-m", "--mode"],
description: "Set file mode (as in chmod), not a=rwx - umask",
args: { name: "MODE" },
args: { name: "mode" },
},
{
name: ["-p", "--parents"],
@@ -22,9 +22,8 @@ const completionSpec: Fig.Spec = {
},
{
name: ["-Z", "--context"],
description:
"Set the SELinux security context of each created directory to CTX",
args: { name: "CTX" },
description: "Set the SELinux security context of each created directory",
args: { name: "context" },
},
{ name: "--help", description: "Display this help and exit" },
{