ficsit-cli-flake/cmd/profile/mod/remove.go
2022-10-14 19:11:16 +03:00

34 lines
628 B
Go

package mod
import (
"fmt"
"github.com/spf13/cobra"
"github.com/satisfactorymodding/ficsit-cli/cli"
)
func init() {
Cmd.AddCommand(removeCmd)
}
var removeCmd = &cobra.Command{
Use: "remove <profile> <mod-reference>",
Short: "Remove a mod from a profile",
Args: cobra.ExactArgs(2),
RunE: func(cmd *cobra.Command, args []string) error {
global, err := cli.InitCLI(false)
if err != nil {
return err
}
profile := global.Profiles.GetProfile(args[0])
if profile == nil {
return fmt.Errorf("profile with name %s does not exist", args[0])
}
profile.RemoveMod(args[1])
return global.Save()
},
}