diff options
| author | Jeff Carr <[email protected]> | 2024-01-16 00:21:21 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-16 00:21:21 -0600 |
| commit | 78a3adeb158344eb99fbdd063152421ed129642b (patch) | |
| tree | f7416bbd350f6dc356f3502a60705a1973a98922 /git.go | |
| parent | c65dd45ba5356e5f2f6628cc14ee4baf9eeea109 (diff) | |
hard code path again
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'git.go')
| -rw-r--r-- | git.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |
