hard code path again

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-16 00:21:21 -06:00
parent c65dd45ba5
commit 78a3adeb15
1 changed files with 1 additions and 1 deletions

2
git.go
View File

@ -217,7 +217,7 @@ func (rs *RepoStatus) CheckBranches() bool {
}
var cmd []string
cmd = append(cmd, "git", "show", "-s", "--format=%ci", hash)
_, _, output := RunCmd(rs.repopath, cmd)
_, _, output := RunCmd("/home/jcarr/go/src/" + rs.repopath, cmd)
// git show -s --format=%ci <hash> will give you the time
// log.Warn(fullfile)
if hash == hashCheck {