This commit is contained in:
Jeff Carr 2025-09-13 07:45:04 -05:00
parent 30ee1fcdf7
commit 86306aa887
1 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@
package main
import (
"go.wit.com/lib/config"
"go.wit.com/lib/protobuf/forgepb"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
@ -53,6 +54,7 @@ func doMergeDevel() (*gitpb.Repos, error) {
badExit(err)
}
done.Append(repo)
config.SetChanged("repos", true)
}
return done, err
}
@ -85,6 +87,7 @@ func doMergeMaster() (*gitpb.Repos, error) {
}
done.Append(repo)
config.SetChanged("repos", true)
}
return done, err
}