diff options
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 { |
