summaryrefslogtreecommitdiff
path: root/doClean.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-19 03:45:10 -0600
committerJeff Carr <[email protected]>2025-01-19 03:45:10 -0600
commit193d041306e5e669a4e9e7a965e2d3cae6f01a62 (patch)
tree3becb10d468fba750d45758d22b0c50ffede1573 /doClean.go
parentb9d4f88abdde4ff72a454f875c64e9c513840a58 (diff)
git checkout on readonly reposv0.22.49
Diffstat (limited to 'doClean.go')
-rw-r--r--doClean.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doClean.go b/doClean.go
index dcd782b..154be88 100644
--- a/doClean.go
+++ b/doClean.go
@@ -184,8 +184,8 @@ func userToDevelRequiresGitPush(repo *gitpb.Repo, branchName string) error {
return fmt.Errorf("user branch not clean to delete %d %d", missing, b2)
}
if missing == 0 {
- log.Info("THIS MEANS THE LOCAL BRANCH IS OK TO DELETE missing =", missing)
- return nil
+ // log.Info("THIS MEANS THE LOCAL BRANCH IS OK TO DELETE missing =", missing)
+ log.Info("THIS IS REALLY BAD RIGHT NOW. must to git push / git merge missing =", missing, b2)
}
return fmt.Errorf("user branch not clean to delete. maybe it is? devel might be ahead of user branch. %d %d", missing, b2)
}