summaryrefslogtreecommitdiff
path: root/unix.go
blob: d03964a344162f8911886db7041eccccfa2edc8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package main

import (
	"strings"

	"go.wit.com/lib/gui/repostatus"
	"go.wit.com/log"
)

var repopath string = "/home/jcarr/"

// if dryRun == true, then it just prints out the values
// but doesn't do anything
func goMake(dryRun string) bool {
	var workingPath string = "go/src"
	for _, line := range me.script {
		if len(line) == 0 {
			continue
		}
		if line[0] == "cd" {
			switch len(line) {
			case 1:
				log.Verbose("do cmdPwd() to go root", repopath+"go/src")
				workingPath = ""
			case 2:
				log.Verbose("do cmdPwd() here", line)
				workingPath = line[1]
			default:
				log.Warn("bad cd", line)
				return false
			}
			continue
		}
		cmd := line[0]
		s := strings.Join(line[1:], " ")
		path := repopath + workingPath
		log.Warn("NEED TO RUN path =", path, "cmd =", cmd, s)
		if dryRun == "--dry-run" {
			continue
		}
		if dryRun == "--doit" {
			log.Warn("Actually RUN path =", path, "cmd =", cmd, s)
			err, b, output := repostatus.RunCmd(path, line)
			if err != nil {
				log.Info("ABEND EXECUTION")
				log.Info("error =", err)
				log.Info("b =", b)
				log.Info("output =", output)
				return false
			}
			// log.Warn("output was =", output)
			continue
		}
		log.Warn("don't know what to do. dryRun ==", dryRun)
		return false
	}
	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.Set(strings.Join(tmp, "\n"))
}