Add shortcuts

Signed-off-by: jolheiser <john.olheiser@gmail.com>
pull/7/head
jolheiser 2021-02-27 23:03:43 -06:00
parent ba9333a076
commit f9d94d76de
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
5 changed files with 14 additions and 10 deletions

View File

@ -15,8 +15,9 @@ import (
)
var Add = cli.Command{
Name: "add",
Usage: "Add a package",
Name: "add",
Aliases: []string{"a"},
Usage: "Add a package",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "force",

View File

@ -15,9 +15,10 @@ import (
)
var Get = cli.Command{
Name: "get",
Usage: "Get package(s)",
Action: doGet,
Name: "get",
Aliases: []string{"g"},
Usage: "Get package(s)",
Action: doGet,
}
func doGet(ctx *cli.Context) error {

View File

@ -10,7 +10,7 @@ import (
var List = cli.Command{
Name: "list",
Aliases: []string{"l"},
Aliases: []string{"ls", "l"},
Usage: "List local packages",
Action: doList,
}

View File

@ -14,8 +14,9 @@ import (
)
var Server = cli.Command{
Name: "server",
Usage: "Start the gpm server",
Name: "server",
Aliases: []string{"web"},
Usage: "Start the gpm server",
Flags: []cli.Flag{
&cli.IntFlag{
Name: "port",

View File

@ -13,8 +13,9 @@ import (
)
var Update = cli.Command{
Name: "update",
Usage: "Update a package",
Name: "update",
Aliases: []string{"u"},
Usage: "Update a package",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "local",