-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathuninstall.go
81 lines (67 loc) · 1.54 KB
/
uninstall.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
package subcmd
import (
"flag"
"os"
"path/filepath"
"github.com/pkg/errors"
"github.com/utahta/pythonbrew/flagset"
"github.com/utahta/pythonbrew/log"
"github.com/utahta/pythonbrew/path"
)
type (
// Uninstall command
Uninstall struct {
flagSet *flag.FlagSet
opts UninstallOptions
log log.Logger
}
// UninstallOptions flag set
UninstallOptions struct {
ShowHelp bool
}
)
// NewUninstall returns Uninstall command
func NewUninstall() *Uninstall {
c := &Uninstall{log: log.NewLogger()}
c.flagSet = flagset.New(c.Name(), "[OPTIONS] VERSION")
c.flagSet.BoolVar(&c.opts.ShowHelp, "h", false, "Show command usage")
return c
}
// Name returns command name
func (c *Uninstall) Name() string {
return "uninstall"
}
// Summary returns command summary
func (c *Uninstall) Summary() string {
return "Uninstall specific Python versions"
}
// Usage shows command usage
func (c *Uninstall) Usage() {
c.flagSet.Usage()
}
// Run runs uninstall command
func (c *Uninstall) Run(args []string) error {
const tag = "uninstall.run"
c.flagSet.Parse(args[1:])
if c.opts.ShowHelp {
c.Usage()
return nil
}
if c.flagSet.NArg() == 0 {
c.log.Noticef("VERSION argument required")
c.Usage()
return nil
}
for _, name := range c.flagSet.Args() {
filename := filepath.Join(path.InstallDir(), name)
if _, err := os.Stat(filename); err != nil {
c.log.Warnf("%s is not installed", name)
continue
}
if err := os.RemoveAll(filename); err != nil {
return errors.Wrap(err, tag)
}
c.log.Infof("%s has been removed", name)
}
return nil
}