hard code path again
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
c65dd45ba5
commit
78a3adeb15
2
git.go
2
git.go
|
@ -217,7 +217,7 @@ func (rs *RepoStatus) CheckBranches() bool {
|
||||||
}
|
}
|
||||||
var cmd []string
|
var cmd []string
|
||||||
cmd = append(cmd, "git", "show", "-s", "--format=%ci", hash)
|
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
|
// git show -s --format=%ci <hash> will give you the time
|
||||||
// log.Warn(fullfile)
|
// log.Warn(fullfile)
|
||||||
if hash == hashCheck {
|
if hash == hashCheck {
|
||||||
|
|
Loading…
Reference in New Issue