diff options
| author | Jeff Carr <[email protected]> | 2024-02-23 00:10:30 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-23 00:10:30 -0600 |
| commit | 5105bd4a992acad1838fb2340ec8f2fee119a91b (patch) | |
| tree | 38c0ac0630e7a298dc4d887b44b77b8658cbb206 /git.go | |
| parent | 359ebce26ee2223fdd05e8a04f75f15415ec0457 (diff) | |
add repo.IncrementVersion()
Diffstat (limited to 'git.go')
| -rw-r--r-- | git.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -44,10 +44,10 @@ func (rs *RepoStatus) GitPull() error { cmd = append(cmd, "git", "pull") err, _, output := RunCmd(rs.realPath.String(), cmd) if err == nil { - log.Log(REPOWARN,"git pull ran", rs.Path()) - log.Log(REPOWARN,"git pull output", output) + log.Log(REPOWARN, "git pull ran", rs.Path()) + log.Log(REPOWARN, "git pull output", output) } else { - log.Log(REPOWARN,"git pull error", rs.Path(), err) + log.Log(REPOWARN, "git pull error", rs.Path(), err) } return err } |
