-
Notifications
You must be signed in to change notification settings - Fork 18
/
cmds.go
52 lines (49 loc) · 1.06 KB
/
cmds.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
package main
import "github.com/urfave/cli/v2"
func installCmd() *cli.Command {
return &cli.Command{
Name: "install",
Aliases: []string{"git-install"},
Usage: "Install gitflow-toolkit",
Action: func(c *cli.Context) error {
if c.NArg() != 0 {
return cli.ShowAppHelp(c)
}
return install(c.String("dir"), c.Bool("hook"))
},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "dir",
Aliases: []string{"d"},
Usage: "Install dir",
Value: "/usr/local/bin",
},
&cli.BoolFlag{
Name: "hook",
Usage: "Install Commit Message hook",
Value: false,
},
},
}
}
func uninstallCmd() *cli.Command {
return &cli.Command{
Name: "uninstall",
Aliases: []string{"git-uninstall"},
Usage: "Uninstall gitflow-toolkit",
Action: func(c *cli.Context) error {
if c.NArg() != 0 {
return cli.ShowAppHelp(c)
}
return uninstall(c.String("dir"))
},
Flags: []cli.Flag{
&cli.StringFlag{
Name: "dir",
Aliases: []string{"d"},
Usage: "Install dir",
Value: "/usr/local/bin",
},
},
}
}