From f5af0b4802331e620bad6f3a5e7e236026ac7054 Mon Sep 17 00:00:00 2001 From: netbenix Date: Sat, 20 Nov 2021 15:56:57 +0100 Subject: [PATCH] Renamed pull to install --- Commands/{PullCommand.go => InstallCommand.go} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename Commands/{PullCommand.go => InstallCommand.go} (66%) diff --git a/Commands/PullCommand.go b/Commands/InstallCommand.go similarity index 66% rename from Commands/PullCommand.go rename to Commands/InstallCommand.go index b1c2f8b..423f198 100644 --- a/Commands/PullCommand.go +++ b/Commands/InstallCommand.go @@ -5,15 +5,15 @@ import ( "lpm-cli/Lotus" ) -func NewPullCommand() *cli.Command{ +func NewInstallCommand() *cli.Command{ logger := Lotus.Logger("pullCommand") return &cli.Command { - Name: "pull", - Usage: "Pull a package", - Description: "Pulls a package from the a registry server.", - HelpName: "pull", + Name: "install", + Usage: "Installs a package", + Description: "Installs a package from the a registry server.", + HelpName: "install", Action: func(c *cli.Context) error { //Do Stuff return nil