|  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
 | package cmd
import (
	"go.jolheiser.com/tmpl/registry"
	"github.com/rs/zerolog/log"
	"github.com/urfave/cli/v2"
)
var Update = &cli.Command{
	Name:        "update",
	Usage:       "Update a template",
	Description: "Update a template in the registry from the original source",
	ArgsUsage:   "[name]",
	Action:      runUpdate,
}
func runUpdate(ctx *cli.Context) error {
	if ctx.NArg() < 1 {
		return cli.ShowCommandHelp(ctx, ctx.Command.Name)
	}
	reg, err := registry.Open(registryFlag)
	if err != nil {
		return err
	}
	tmpl, err := reg.GetTemplate(ctx.Args().First())
	if err != nil {
		return err
	}
	if err := reg.UpdateTemplate(tmpl.Name); err != nil {
		return err
	}
	log.Info().Msgf("Successfully updated %q", tmpl.Name)
	return nil
}
 |