mirror of https://github.com/curusarn/resh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
package cmd
|
|
|
|
import (
|
|
"github.com/curusarn/resh/internal/cfg"
|
|
"github.com/curusarn/resh/internal/logger"
|
|
"github.com/curusarn/resh/internal/output"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// info passed during build
|
|
var version string
|
|
var commit string
|
|
var developement bool
|
|
|
|
// globals
|
|
var config cfg.Config
|
|
var out *output.Output
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "reshctl",
|
|
Short: "Reshctl (RESH control) - check status, update, enable/disable features, sanitize history and more.",
|
|
}
|
|
|
|
// Execute reshctl
|
|
func Execute(ver, com string) {
|
|
version = ver
|
|
commit = com
|
|
|
|
config, errCfg := cfg.New()
|
|
logger, _ := logger.New("reshctl", config.LogLevel, developement)
|
|
defer logger.Sync() // flushes buffer, if any
|
|
out = output.New(logger, "ERROR")
|
|
if errCfg != nil {
|
|
out.Error("Error while getting configuration", errCfg)
|
|
}
|
|
|
|
rootCmd.AddCommand(completionCmd)
|
|
completionCmd.AddCommand(completionBashCmd)
|
|
completionCmd.AddCommand(completionZshCmd)
|
|
|
|
rootCmd.AddCommand(versionCmd)
|
|
|
|
updateCmd.Flags().BoolVar(&betaFlag, "beta", false, "Update to latest version even if it's beta.")
|
|
rootCmd.AddCommand(updateCmd)
|
|
|
|
if err := rootCmd.Execute(); err != nil {
|
|
out.Fatal("Command ended with error", err)
|
|
}
|
|
}
|
|
|