summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-15 08:12:04 -0600
committerJeff Carr <[email protected]>2024-01-15 08:12:04 -0600
commitceaab24e56b13a1118a38dbf5dc5e5023d6ec4a9 (patch)
tree7d45c9092c6bbb5ea96e3b7bb1124988434b62ae /git.go
parentba825e7eb06ca8aa57c7dc07358e2cf902b2f5ec (diff)
work on autotypist reset
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 c4069d9..e26141a 100644
--- a/git.go
+++ b/git.go
@@ -206,7 +206,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(rs.repopath, cmd)
// git show -s --format=%ci <hash> will give you the time
// log.Warn(fullfile)
if hash == hashCheck {