autorestic/cmd/upgrade.go

22 lines
464 B
Go
Raw Normal View History

2021-04-11 13:04:11 +02:00
package cmd
import (
"github.com/cupcakearmy/autorestic/internal/bins"
"github.com/spf13/cobra"
)
var upgradeCmd = &cobra.Command{
Use: "upgrade",
2021-04-11 13:08:50 +02:00
Short: "Upgrade autorestic and restic",
2021-04-11 13:04:11 +02:00
Run: func(cmd *cobra.Command, args []string) {
noRestic, _ := cmd.Flags().GetBool("no-restic")
err := bins.Upgrade(!noRestic)
CheckErr(err)
2021-04-11 13:04:11 +02:00
},
}
func init() {
rootCmd.AddCommand(upgradeCmd)
2021-04-28 10:54:30 +02:00
upgradeCmd.Flags().Bool("no-restic", false, "also update restic")
2021-04-11 13:04:11 +02:00
}