From 78a3adeb158344eb99fbdd063152421ed129642b Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 16 Jan 2024 00:21:21 -0600 Subject: hard code path again Signed-off-by: Jeff Carr --- git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.go b/git.go index a20dd28..d05797e 100644 --- a/git.go +++ b/git.go @@ -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 will give you the time // log.Warn(fullfile) if hash == hashCheck { -- cgit v1.2.3