Skip to content

Commit 60466de

Browse files
committed
fix(mkdir): Use lower case for arg names
Fixes withfig#2589
1 parent f8e94e3 commit 60466de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mkdir.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const completionSpec: Fig.Spec = {
1010
{
1111
name: ["-m", "--mode"],
1212
description: "Set file mode (as in chmod), not a=rwx - umask",
13-
args: { name: "MODE" },
13+
args: { name: "mode" },
1414
},
1515
{
1616
name: ["-p", "--parents"],
@@ -23,8 +23,8 @@ const completionSpec: Fig.Spec = {
2323
{
2424
name: ["-Z", "--context"],
2525
description:
26-
"Set the SELinux security context of each created directory to CTX",
27-
args: { name: "CTX" },
26+
"Set the SELinux security context of each created directory",
27+
args: { name: "context" },
2828
},
2929
{ name: "--help", description: "Display this help and exit" },
3030
{

0 commit comments

Comments
 (0)