Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/mkdir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand All @@ -23,8 +23,8 @@ const completionSpec: Fig.Spec = {
{
name: ["-Z", "--context"],
description:
"Set the SELinux security context of each created directory to CTX",
args: { name: "CTX" },
"Set the SELinux security context of each created directory",
args: { name: "context" },
},
{ name: "--help", description: "Display this help and exit" },
{
Expand Down
Loading