diff options
| author | Jeff Carr <[email protected]> | 2024-02-12 18:16:03 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-12 18:16:03 -0600 |
| commit | e7a3ef1298cb50fc69ca2fb61d81b4a74838a2c4 (patch) | |
| tree | 9a0e1070bb2050cd194d022d12dd8d519c48587e /unix.go | |
| parent | b4a571fb70905d69161b204784fff77517ee5022 (diff) | |
try to probe the git go package type
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'unix.go')
| -rw-r--r-- | unix.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -14,6 +14,7 @@ import ( "syscall" "time" + "go.wit.com/lib/gui/shell" "go.wit.com/log" ) @@ -120,7 +121,7 @@ func splitVersion(version string) (a, b, c string) { func (rs *RepoStatus) RunCmd(parts []string) (error, string) { path := rs.realPath.String() - err, _, output := RunCmd(path, parts) + err, _, output := shell.RunCmd(path, parts) if err != nil { log.Log(WARN, "cmd:", parts) log.Log(WARN, "ouptput:", output) @@ -131,7 +132,7 @@ func (rs *RepoStatus) RunCmd(parts []string) (error, string) { // temp hack. fix this func runCmd(path string, parts []string) (error, bool, string) { - return RunCmd(path, parts) + return shell.RunCmd(path, parts) } func RunCmd(workingpath string, parts []string) (error, bool, string) { |
