summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-19 11:51:35 -0600
committerJeff Carr <[email protected]>2025-01-19 11:51:35 -0600
commit4c38b052fd936cd9fc9484811ceae4fd5b24e12d (patch)
tree069c81c3f7c544574dc4301c7bb57692e5fc9d04
parent7285a7a8fbfc9c8565c4ced1de3e491953a001f5 (diff)
clear target versions in here for nowv0.22.53
-rw-r--r--doDirty.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/doDirty.go b/doDirty.go
index b852aa7..12a48b0 100644
--- a/doDirty.go
+++ b/doDirty.go
@@ -34,6 +34,10 @@ func straightCheckDirty() int {
func doCheckDirty(repo *gitpb.Repo) error {
repo.CheckDirty()
+ // reset these in here for now
+ if repo.GetTargetVersion() != "" {
+ repo.TargetVersion = ""
+ }
return nil
}