summaryrefslogtreecommitdiff
path: root/unix.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-23 11:22:33 -0600
committerJeff Carr <[email protected]>2024-01-23 11:22:33 -0600
commitc408a7cca557f8e8933484cff20934564ec70d17 (patch)
treec6d02efe74f4dbe2b080189bf6d9ba44f1eefdf0 /unix.go
parentb4f1bf383600dd96491b13deb13fbed9e6be4cad (diff)
working towards global branch settings
repostatus improvements common branch handling scan all repos code cleanups check dirty before global delete go mod using a quieter gui smarter scripting Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'unix.go')
-rw-r--r--unix.go15
1 files changed, 3 insertions, 12 deletions
diff --git a/unix.go b/unix.go
index 575c066..2777c74 100644
--- a/unix.go
+++ b/unix.go
@@ -1,5 +1,6 @@
package main
+/*
import (
"strings"
@@ -7,7 +8,7 @@ import (
"go.wit.com/log"
)
-var repopath string = "/home/jcarr/"
+// var repopath string = "/home/jcarr/"
// if dryRun == true, then it just prints out the values
// but doesn't do anything
@@ -55,14 +56,4 @@ func goMake(dryRun string) bool {
}
return true
}
-
-func setGitCommands() {
- var tmp []string
- // convert to displayable to the user text
- for _, line := range me.script {
- s := strings.Join(line, " ")
- log.Warn("s =", s)
- tmp = append(tmp, s)
- }
- cmds.SetText(strings.Join(tmp, "\n"))
-}
+*/