30 lines
503 B
Go
30 lines
503 B
Go
package profile
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/satisfactorymodding/ficsit-cli/cli"
|
|
)
|
|
|
|
func init() {
|
|
Cmd.AddCommand(deleteCmd)
|
|
}
|
|
|
|
var deleteCmd = &cobra.Command{
|
|
Use: "delete <name>",
|
|
Short: "Delete a profile",
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
global, err := cli.InitCLI(false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = global.Profiles.DeleteProfile(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return global.Save()
|
|
},
|
|
}
|