diff options
| author | Jeff Carr <[email protected]> | 2024-01-15 08:12:04 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-15 08:12:04 -0600 |
| commit | ceaab24e56b13a1118a38dbf5dc5e5023d6ec4a9 (patch) | |
| tree | 7d45c9092c6bbb5ea96e3b7bb1124988434b62ae /git.go | |
| parent | ba825e7eb06ca8aa57c7dc07358e2cf902b2f5ec (diff) | |
work on autotypist reset
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
@@ -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 { |
