|
|
@@ -15,6 +15,7 @@ import (
|
|
|
"github.com/kujtimiihoxha/opencode/internal/logging"
|
|
|
"github.com/kujtimiihoxha/opencode/internal/pubsub"
|
|
|
"github.com/kujtimiihoxha/opencode/internal/tui"
|
|
|
+ "github.com/kujtimiihoxha/opencode/internal/version"
|
|
|
zone "github.com/lrstanley/bubblezone"
|
|
|
"github.com/spf13/cobra"
|
|
|
)
|
|
|
@@ -31,6 +32,10 @@ to assist developers in writing, debugging, and understanding code directly from
|
|
|
cmd.Help()
|
|
|
return nil
|
|
|
}
|
|
|
+ if cmd.Flag("version").Changed {
|
|
|
+ fmt.Println(version.Version)
|
|
|
+ return nil
|
|
|
+ }
|
|
|
|
|
|
// Load the config
|
|
|
debug, _ := cmd.Flags().GetBool("debug")
|
|
|
@@ -247,6 +252,7 @@ func Execute() {
|
|
|
|
|
|
func init() {
|
|
|
rootCmd.Flags().BoolP("help", "h", false, "Help")
|
|
|
+ rootCmd.Flags().BoolP("version", "v", false, "Version")
|
|
|
rootCmd.Flags().BoolP("debug", "d", false, "Debug")
|
|
|
rootCmd.Flags().StringP("cwd", "c", "", "Current working directory")
|
|
|
}
|