mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-03 07:18:12 +08:00
fix(cmd/bootstrap) s/remove/rm
@jbenet License: MIT Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
This commit is contained in:
parent
251b916ce9
commit
697453dfc2
@ -25,7 +25,7 @@ var BootstrapCmd = &cmds.Command{
|
||||
Synopsis: `
|
||||
ipfs bootstrap list - Show peers in the bootstrap list
|
||||
ipfs bootstrap add <peer>... - Add peers to the bootstrap list
|
||||
ipfs bootstrap remove <peer>... - Removes peers from the bootstrap list
|
||||
ipfs bootstrap rm <peer>... - Removes peers from the bootstrap list
|
||||
`,
|
||||
ShortDescription: `
|
||||
Running 'ipfs bootstrap' with no arguments will run 'ipfs bootstrap list'.
|
||||
@ -37,9 +37,9 @@ Running 'ipfs bootstrap' with no arguments will run 'ipfs bootstrap list'.
|
||||
Type: bootstrapListCmd.Type,
|
||||
|
||||
Subcommands: map[string]*cmds.Command{
|
||||
"list": bootstrapListCmd,
|
||||
"add": bootstrapAddCmd,
|
||||
"remove": bootstrapRemoveCmd,
|
||||
"list": bootstrapListCmd,
|
||||
"add": bootstrapAddCmd,
|
||||
"rm": bootstrapRemoveCmd,
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user