summaryrefslogtreecommitdiff
path: root/doGit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 17:25:15 -0500
committerJeff Carr <[email protected]>2025-10-05 17:25:15 -0500
commitc5796d45570ca3b6d0132cbfa3faabacc070aa13 (patch)
tree1a90707034a28fcbc58755c101e8e251cb51209b /doGit.go
parentf09240a122f09f297d96332c431db74857b93e6f (diff)
start working on not killing autogen files
Diffstat (limited to 'doGit.go')
-rw-r--r--doGit.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/doGit.go b/doGit.go
index a886a3b..6ef6f96 100644
--- a/doGit.go
+++ b/doGit.go
@@ -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) {