summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-06 16:31:23 -0600
committerJeff Carr <[email protected]>2024-11-06 16:31:23 -0600
commit30f507338d5c4d3be9acc6e6f23e5461fc3a5d7b (patch)
treefcb0ba387ce6e9e7c3bb63dd5104c5e765f80121
parent98e64560df3f69c9a7cb62fd74e31361ef6e906b (diff)
omg. never did os.UserHomeDir()
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--control2
-rw-r--r--main.go4
2 files changed, 5 insertions, 1 deletions
diff --git a/control b/control
index 6c48021..514d0cc 100644
--- a/control
+++ b/control
@@ -2,8 +2,10 @@ Source: go-deb
Build-Depends: golang
Package: go-deb
Maintainer: Jeff Carr <[email protected]>
+Packager: Jeff Carr <[email protected]>
Architecture: amd64
Depends:
+URL: https://go.wit.com/
Recommends: go-gui-toolkits
Description: create distribution packages for golang repositories
Hopefully, this can make compatible and correct source
diff --git a/main.go b/main.go
index 9831439..d5fe4e7 100644
--- a/main.go
+++ b/main.go
@@ -39,7 +39,9 @@ func main() {
basicWindow = makebasicWindow()
- filepath := filepath.Join("/home/jcarr/go/src", argv.Repo)
+ // todo: add the go.work file logic here
+ homeDir, _ := os.UserHomeDir()
+ filepath := filepath.Join(homeDir, "go/src", argv.Repo)
os.Chdir(filepath)
// scan the repo