35 lines
628 B
Go
35 lines
628 B
Go
|
package installation
|
||
|
|
||
|
import (
|
||
|
"github.com/satisfactorymodding/ficsit-cli/cli"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
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 {
|
||
|
global, err := cli.InitCLI()
|
||
|
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()
|
||
|
},
|
||
|
}
|