mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-01 03:04:12 +01:00
22 lines
452 B
Go
22 lines
452 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/cupcakearmy/autorestic/internal/bins"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var upgradeCmd = &cobra.Command{
|
|
Use: "upgrade",
|
|
Short: "Upgrade autorestic and restic",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
restic, _ := cmd.Flags().GetBool("restic")
|
|
err := bins.Upgrade(restic)
|
|
CheckErr(err)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(upgradeCmd)
|
|
upgradeCmd.Flags().Bool("restic", true, "also update restic")
|
|
}
|