diff options
| author | Jeff Carr <[email protected]> | 2025-07-07 20:27:10 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-07-07 20:27:10 -0500 |
| commit | 5d57a8968d7b2cdd2e6ab9ee8ef0af9c9fc2fc23 (patch) | |
| tree | 8d9454f084195048e754155bc4e130af14d387dd /doPull.go | |
| parent | e2d33ea49600423f1669ef1ab4dab5d91aa17610 (diff) | |
s/GitPull/Pull/
Diffstat (limited to 'doPull.go')
| -rw-r--r-- | doPull.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -44,7 +44,7 @@ func rillPull(repo *gitpb.Repo) error { // is every repo on the devel branch? func doGitPullNew() error { - if argv.GitPull == nil { + if argv.Pull == nil { return fmt.Errorf("not really 'fetch pull'") } @@ -63,11 +63,11 @@ func doGitPullNew() error { check := gitpb.NewRepos() - if argv.GitPull.Dirty != nil { + if argv.Pull.Dirty != nil { check = findDirty() } - if argv.GitPull.Patches != nil { + if argv.Pull.Patches != nil { check = findReposWithPatches() } |
