Renamed pull to install
This commit is contained in:
parent
d37dbddb40
commit
f5af0b4802
1 changed files with 5 additions and 5 deletions
|
|
@ -5,15 +5,15 @@ import (
|
||||||
"lpm-cli/Lotus"
|
"lpm-cli/Lotus"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewPullCommand() *cli.Command{
|
func NewInstallCommand() *cli.Command{
|
||||||
|
|
||||||
logger := Lotus.Logger("pullCommand")
|
logger := Lotus.Logger("pullCommand")
|
||||||
|
|
||||||
return &cli.Command {
|
return &cli.Command {
|
||||||
Name: "pull",
|
Name: "install",
|
||||||
Usage: "Pull a package",
|
Usage: "Installs a package",
|
||||||
Description: "Pulls a package from the a registry server.",
|
Description: "Installs a package from the a registry server.",
|
||||||
HelpName: "pull",
|
HelpName: "install",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
//Do Stuff
|
//Do Stuff
|
||||||
return nil
|
return nil
|
||||||
Reference in a new issue