Browse Source

update mainter email

Kujtim Hoxha 10 months ago
parent
commit
f879a94c95
2 changed files with 9 additions and 3 deletions
  1. 3 3
      .goreleaser.yml
  2. 6 0
      cmd/root.go

+ 3 - 3
.goreleaser.yml

@@ -32,9 +32,9 @@ snapshot:
 aurs:
   - name: opencode
     homepage: "https://github.com/opencode-ai/opencode"
-    description: "Deploy anything"
+    description: "terminal based agent that can build anything"
     maintainers:
-      - "opencode <[email protected]>"
+      - "kujtimiihoxha <[email protected]>"
     license: "MIT"
     private_key: "{{ .Env.AUR_KEY }}"
     git_url: "ssh://[email protected]/opencode-bin.git"
@@ -49,7 +49,7 @@ brews:
       owner: opencode-ai
       name: homebrew-tap
 nfpms:
-  - maintainer: opencode
+  - maintainer: kujtimiihoxha
     description: terminal based agent that can build anything
     formats:
       - deb

+ 6 - 0
cmd/root.go

@@ -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")
 }