ficsit-cli-flake/cmd/installation/add.go

36 lines
634 B
Go
Raw Permalink Normal View History

2022-06-08 20:56:32 +00:00
package installation
import (
"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 <path> [profile]",
Short: "Add an installation",
Args: cobra.MinimumNArgs(1),
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
}
profile := global.Profiles.SelectedProfile
if len(args) > 1 {
profile = args[1]
}
_, err = global.Installations.AddInstallation(global, args[0], profile)
if err != nil {
return err
}
return global.Save()
},
}