Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit 7329082

Browse files
committed
Remove -p shorthand for mkdir --parents
The shorthand is already in use for --credential-passphrase
1 parent 96be41b commit 7329082

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internals/secrethub/mkdir.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func NewMkDirCommand(io ui.IO, newClient newClientFunc) *MkDirCommand {
3434
func (cmd *MkDirCommand) Register(r command.Registerer) {
3535
clause := r.Command("mkdir", "Create a new directory.")
3636
clause.Arg("dir-path", "The path to the directory").Required().PlaceHolder(dirPathPlaceHolder).SetValue(&cmd.path)
37-
clause.Flag("parents", "Create parent directories if needed. Does not error when directories already exist.").Short('p').BoolVar(&cmd.parents)
37+
clause.Flag("parents", "Create parent directories if needed. Does not error when directories already exist.").BoolVar(&cmd.parents)
3838

3939
command.BindAction(clause, cmd.Run)
4040
}

0 commit comments

Comments
 (0)