ficsit-cli-flake/cmd/profile/mod/add.go

42 lines
743 B
Go
Raw Normal View History

2022-06-08 20:56:32 +00:00
package mod
import (
"fmt"
"github.com/spf13/cobra"
2022-10-14 16:11:16 +00:00
"github.com/satisfactorymodding/ficsit-cli/cli"
2022-06-08 20:56:32 +00:00
)
func init() {
Cmd.AddCommand(addCmd)
}
var addCmd = &cobra.Command{
Use: "add <profile> <mod-reference> [version]",
Short: "Add mod to a profile",
Args: cobra.MinimumNArgs(2),
RunE: func(cmd *cobra.Command, args []string) error {
2022-10-14 16:11:16 +00:00
global, err := cli.InitCLI(false)
2022-06-08 20:56:32 +00:00
if err != nil {
return err
}
version := ">=0.0.0"
if len(args) > 2 {
version = args[2]
}
profile := global.Profiles.GetProfile(args[0])
if profile == nil {
return fmt.Errorf("profile with name %s does not exist", args[0])
}
if err := profile.AddMod(args[1], version); err != nil {
return err
}
return global.Save()
},
}