summaryrefslogtreecommitdiff
path: root/goList.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-03-21 16:16:35 -0500
committerJeff Carr <[email protected]>2024-03-21 16:16:35 -0500
commit2ce9051921ef1ef93b6bcaa48850f2b207b86598 (patch)
treef2e19ffa6cef7eb4a153e01450618cca9c85ad09 /goList.go
parent804acc169a49320a5f9a0efb60847071f7fee7f2 (diff)
exec things to STDOUT
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'goList.go')
-rw-r--r--goList.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/goList.go b/goList.go
new file mode 100644
index 0000000..b49ecd2
--- /dev/null
+++ b/goList.go
@@ -0,0 +1,34 @@
+package repostatus
+
+import (
+ "encoding/json"
+ "errors"
+
+ "go.wit.com/lib/gui/shell"
+ "go.wit.com/log"
+)
+
+// go list -json -m go.wit.com/apps/go-clone@latest
+
+// go list -json -m go.wit.com/apps/go-clone@latest
+// {
+// "Path": "go.wit.com/apps/go-clone",
+// "Version": "v0.0.6",
+// "Query": "latest",
+// "Time": "2024-03-10T04:12:15Z",
+// "GoMod": "/home/jcarr/go/pkg/mod/cache/download/go.wit.com/apps/go-clone/@v/v0.0.6.mod",
+// "GoVersion": "1.22.0"
+// }
+
+func runGoList(url string) (string, error) {
+ r := shell.RunPath("", []string{"go", "list", "-json", "-m", url + "@latest"})
+ log.Info("runGoList() r.Output =", r.Output)
+ var modInfo any
+ err := json.Unmarshal(r.Output, &modInfo)
+ if err != nil {
+ log.Info("runGoList() json.Unmarshal() error =", err)
+ return "", err
+ }
+ log.Spew(modInfo)
+ return "", errors.New("todo: parse json")
+}