oh-my-posh/src/cli/config_migrate.go

65 lines
1.6 KiB
Go

package cli
import (
"fmt"
"github.com/jandedobbeleer/oh-my-posh/src/engine"
"github.com/jandedobbeleer/oh-my-posh/src/platform"
"github.com/spf13/cobra"
)
var (
write bool
format string
)
// migrateCmd represents the migrate command
var migrateCmd = &cobra.Command{
Use: "migrate",
Short: "Migrate your config",
Long: `Migrate your config.
You can choose to print the output to stdout, or migrate your config in the format of your choice.
Example usage
> oh-my-posh config migrate --config ~/myconfig.omp.json
Migrates the ~/myconfig.omp.json config file and prints the result to stdout.
> oh-my-posh config migrate --config ~/myconfig.omp.json --format toml
Migrates the ~/myconfig.omp.json config file to toml and prints the result to stdout.
> oh-my-posh config migrate --config ~/myconfig.omp.json --format toml --write
Migrates the ~/myconfig.omp.json config file to toml and writes the result to your config file.
A backup of the current config can be found at ~/myconfig.omp.json.bak.`,
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
env := &platform.Shell{
Version: cliVersion,
CmdFlags: &platform.Flags{
Config: config,
Migrate: true,
},
}
env.Init()
defer env.Close()
cfg := engine.LoadConfig(env)
if write {
cfg.BackupAndMigrate(env)
return
}
cfg.Migrate(env)
fmt.Print(cfg.Export(format))
},
}
func init() { //nolint:gochecknoinits
migrateCmd.Flags().BoolVarP(&write, "write", "w", false, "write the migrated config back to the config file")
migrateCmd.Flags().StringVarP(&format, "format", "f", "json", "the config format to migrate to")
configCmd.AddCommand(migrateCmd)
}