diff options
Diffstat (limited to 'unix.go')
| -rw-r--r-- | unix.go | 29 |
1 files changed, 3 insertions, 26 deletions
@@ -5,7 +5,6 @@ import ( "os" "os/exec" "path/filepath" - "regexp" "strings" "time" @@ -15,31 +14,6 @@ import ( ) /* -func run(path string, thing string, cmdline string) string { - parts := strings.Split(cmdline, " ") - // Create the command - cmd := exec.Command(thing, parts...) - - // Set the working directory - cmd.Dir = path - - // Execute the command - output, err := cmd.CombinedOutput() - tmp := string(output) - tmp = strings.TrimSpace(tmp) - - if err != nil { - log.Log(WARN, "run()", path, thing, cmdline, "=", tmp) - log.Error(err, "cmd error'd out", parts) - return "" - } - - // Print the output - log.Log(INFO, "run()", path, thing, cmdline, "=", tmp) - return tmp -} -*/ - // goes in one directory so it gets remote branch names func listFiles(directory string) []string { var files []string @@ -65,7 +39,9 @@ func listFiles(directory string) []string { return files } +*/ +/* func normalizeVersion(s string) string { // reg, err := regexp.Compile("[^a-zA-Z0-9]+") parts := strings.Split(s, "-") @@ -94,6 +70,7 @@ func splitVersion(version string) (a, b, c string) { return parts[0], parts[1], parts[2] } } +*/ func (rs *RepoStatus) Run(cmd []string) cmd.Status { path := rs.realPath.String() |
