diff options
Diffstat (limited to 'doGit.go')
| -rw-r--r-- | doGit.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -84,7 +84,9 @@ func doPull(wpath string) { return } os.Chdir(repo.FullPath) - exitOnErrorRealtime([]string{"git", "pull"}) + cmd := []string{"git", "pull"} + log.Info("Run", repo.FullPath, cmd) + exitOnErrorRealtime(cmd) } func doPush(wpath string) { |
