wasn't setting the dirty flag

This commit is contained in:
Jeff Carr 2024-12-18 22:02:37 -06:00
parent 36fdd99d15
commit 9935f45bd4
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ func (repo *Repo) CheckDirty() bool {
pbnow := timestamppb.New(time.Now())
repo.Times.LastDirty = pbnow
repo.Dirty = bad
return bad
}