47 lines
1,000 B
Go
47 lines
1,000 B
Go
|
package installation
|
||
|
|
||
|
import (
|
||
|
"github.com/pkg/errors"
|
||
|
"github.com/spf13/cobra"
|
||
|
"github.com/spf13/viper"
|
||
|
|
||
|
"github.com/satisfactorymodding/ficsit-cli/cli"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
setVanillaCmd.Flags().BoolP("off", "o", false, "Disable vanilla")
|
||
|
|
||
|
Cmd.AddCommand(setVanillaCmd)
|
||
|
}
|
||
|
|
||
|
var setVanillaCmd = &cobra.Command{
|
||
|
Use: "set-vanilla <path>",
|
||
|
Short: "Set the installation to vanilla mode or not",
|
||
|
Args: cobra.ExactArgs(1),
|
||
|
PreRun: func(cmd *cobra.Command, args []string) {
|
||
|
_ = viper.BindPFlag("off", cmd.Flags().Lookup("off"))
|
||
|
},
|
||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||
|
global, err := cli.InitCLI(false)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
var installation *cli.Installation
|
||
|
for _, install := range global.Installations.Installations {
|
||
|
if install.Path == args[0] {
|
||
|
installation = install
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if installation == nil {
|
||
|
return errors.New("installation not found")
|
||
|
}
|
||
|
|
||
|
installation.Vanilla = !viper.GetBool("off")
|
||
|
|
||
|
return global.Save()
|
||
|
},
|
||
|
}
|