summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-16 00:21:21 -0600
committerJeff Carr <[email protected]>2024-01-16 00:21:21 -0600
commit78a3adeb158344eb99fbdd063152421ed129642b (patch)
treef7416bbd350f6dc356f3502a60705a1973a98922 /git.go
parentc65dd45ba5356e5f2f6628cc14ee4baf9eeea109 (diff)
hard code path again
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'git.go')
-rw-r--r--git.go2
1 files changed, 1 insertions, 1 deletions
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 <hash> will give you the time
// log.Warn(fullfile)
if hash == hashCheck {