forked from marwanhawari/stew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
114 lines (108 loc) · 2.64 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package main
import (
"log"
"os"
"github.com/marwanhawari/stew/cmd"
"github.com/urfave/cli"
)
func main() {
app := &cli.App{
Name: "stew",
Version: "v0.4.0",
Commands: []cli.Command{
{
Name: "install",
Usage: "Install a binary. The input can be a GitHub repo or a URL. [Ex: stew install marwanhawari/ppath]",
Aliases: []string{"i"},
Action: func(c *cli.Context) error {
cmd.Install(c.Args().First())
return nil
},
},
{
Name: "search",
Usage: "Search for a GitHub repo then browse the selected repo's releases and assets. [Ex: stew search ripgrep]",
Aliases: []string{"s"},
Action: func(c *cli.Context) error {
cmd.Search(c.Args().First())
return nil
},
},
{
Name: "browse",
Usage: "Browse the releases and assets from a GitHub repo. [Ex: stew browse marwanhawari/ppath]",
Aliases: []string{"b"},
Action: func(c *cli.Context) error {
cmd.Browse(c.Args().First())
return nil
},
},
{
Name: "upgrade",
Usage: "Upgrade a binary to the latest available in the GitHub repo. Use the name of the installed binary. [Ex: stew upgrade fzf]",
Aliases: []string{"up"},
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "all",
Usage: "Upgrade all binaries",
},
},
Action: func(c *cli.Context) error {
cmd.Upgrade(c.Bool("all"), c.Args().First())
return nil
},
},
{
Name: "uninstall",
Usage: "Uninstall a binary. Use the name of the installed binary. [Ex: stew uninstall fzf]",
Aliases: []string{"un"},
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "all",
Usage: "Uninstall all binaries",
},
},
Action: func(c *cli.Context) error {
cmd.Uninstall(c.Bool("all"), c.Args().First())
return nil
},
},
{
Name: "rename",
Usage: "Rename an installed binary using an interactive UI. [Ex: stew rename fzf]",
Aliases: []string{"re"},
Action: func(c *cli.Context) error {
cmd.Rename(c.Args().First())
return nil
},
},
{
Name: "list",
Usage: "List installed binaries [Ex: stew list]",
Aliases: []string{"ls"},
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "tags",
Usage: "include the version tags",
},
},
Action: func(c *cli.Context) error {
cmd.List(c.Bool("tags"))
return nil
},
},
{
Name: "config",
Usage: "Configure the stew file paths using an interactive UI. [Ex: stew config]",
Action: func(c *cli.Context) error {
cmd.Config()
return nil
},
},
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}