summaryrefslogtreecommitdiff
path: root/doPull.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-14 18:40:55 -0600
committerJeff Carr <[email protected]>2025-02-14 18:40:55 -0600
commit10f53c5f178e2303b7d3b011c1f9afbdc8c1c63e (patch)
tree01c42eca3d4ab53564afc620cd0ac03c52722561 /doPull.go
parent7d4bb336b3cecec23e611ef420a7052f955200ad (diff)
general work on 'Build()'
Diffstat (limited to 'doPull.go')
-rw-r--r--doPull.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doPull.go b/doPull.go
index 0725ba3..edf3adf 100644
--- a/doPull.go
+++ b/doPull.go
@@ -33,7 +33,7 @@ func rillPull(repo *gitpb.Repo) error {
var cmd []string
cmd = append(cmd, "git", "pull")
- _, err := repo.RunVerbose(cmd)
+ err := repo.RunVerbose(cmd)
if err != nil {
log.Info(repo.GetFullPath(), "git pull err:", err)
}
@@ -89,7 +89,7 @@ func rillFetchMaster(repo *gitpb.Repo) error {
}
branch := repo.GetMasterBranchName()
cmd := []string{"git", "fetch", "origin", branch + ":" + branch}
- _, err := repo.RunVerbose(cmd)
+ err := repo.RunVerbose(cmd)
return err
}