diff options
| author | Jeff Carr <[email protected]> | 2025-09-26 19:34:58 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-26 19:34:58 -0500 |
| commit | 21f2a98121f4d141512fae8ef15efbf6748a1b37 (patch) | |
| tree | 189bb146f4e3091cf0f48c84aacc6d711b1d118a /branches.go | |
| parent | 10e19e30e36ace123848630f013aad0ca40dd4cf (diff) | |
pass back errv0.0.154
Diffstat (limited to 'branches.go')
| -rw-r--r-- | branches.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/branches.go b/branches.go index aea2caa..fc1364c 100644 --- a/branches.go +++ b/branches.go @@ -204,11 +204,7 @@ func (f *Forge) makeUserBranches() error { } func testReload(repo *gitpb.Repo) error { - if !repo.HasChanged() { - return nil - } - repo.ReloadCheck() - return log.Errorf("repo changed") + return repo.HasChanged() } func (f *Forge) DoAllCheckoutDevelNew(force bool) error { |
