blob: 718fb4a34adfdd764404f10ec8e227cd356ae27d (
plain) (
blame)
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
|
package commands
import (
"github.com/spf13/cobra"
)
func newRmCommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
Use: "rm <id> [<remote>]",
Short: "Remove an existing bug.",
Long: "Remove an existing bug in the local repository. If the bug was imported from a bridge, specify the remote name to remove it from. Note removing bugs that were imported from bridges will not remove the bug remote, and will only remove the local copy of the bug.",
PreRunE: loadBackendEnsureUser(env),
PostRunE: closeBackend(env),
RunE: func(cmd *cobra.Command, args []string) error {
return runRm(env, args)
},
}
flags := cmd.Flags()
flags.SortFlags = false
return cmd
}
func runRm(env *Env, args []string) (err error) {
err = env.backend.RemoveBug(args)
if err != nil {
return
}
env.out.Printf("bug %s removed\n", args[0])
return
}
|