mirror of
https://github.com/withfig/autocomplete.git
synced 2025-12-13 20:36:48 +01:00
fix(mkdir): Use lower case for arg names (#2590)
Co-authored-by: Chay Nabors <nabochay@amazon.com>
This commit is contained in:
@@ -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" },
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user