feat: add version variable to cocommit which gets set through build command

This commit is contained in:
Slug-Boi
2024-11-29 23:53:15 +01:00
parent 0350779df3
commit 08d1942492
2 changed files with 44 additions and 1 deletions
+34 -1
View File
@@ -3,6 +3,7 @@ package cmd
import (
"archive/tar"
"compress/gzip"
"encoding/json"
"fmt"
"io"
"log"
@@ -17,6 +18,11 @@ import (
"github.com/spf13/cobra"
)
type github_release struct {
TagName string `json:"tag_name"`
}
// updateCmd represents the update command
var updateCmd = &cobra.Command{
Use: "update",
@@ -25,6 +31,33 @@ var updateCmd = &cobra.Command{
Run: func(cmd *cobra.Command, args []string) {
gflag, _ := cmd.Flags().GetBool("go-get")
// check version of the cli tool
Github, err := http.Get("https://api.github.com/repos/Slug-Boi/cocommit/releases/latest")
if err != nil {
fmt.Println("Error getting latest release version")
fmt.Println("Would you still like to update? (y/n)")
var input string
fmt.Scanln(&input)
if input == "y" || input == "Y" || input == "yes" {
fmt.Println("Running update script to update cocommit cli tool")
} else {
fmt.Println("Update cancelled")
return
}
}
defer Github.Body.Close()
var release github_release
err = json.NewDecoder(Github.Body).Decode(&release)
if err != nil {
panic("Error decoding json")
}
if release.TagName == Coco_Version {
fmt.Println("Cocommit cli tool is already up to date")
return
}
if gflag {
fmt.Println("Running go get command to update cocommit cli tool")
cmd := exec.Command("go", "get", "-u", "github.com/Slug-Boi/cocommit")
@@ -34,7 +67,7 @@ var updateCmd = &cobra.Command{
}
fmt.Println("Cocommit cli tool updated successfully")
} else {
fmt.Println("Running update script to update cocommit cli tool")
fmt.Println("Running binary replace to update cocommit cli tool")
updateScript()
}