aboutsummaryrefslogtreecommitdiffstats
path: root/bug/clocks.go
blob: 47cd1509d3d3378f968d1efdd91a3a2301670ca0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package bug

import (
	"github.com/MichaelMure/git-bug/repository"
)

// Witnesser will read all the available Bug to recreate the different logical
// clocks
func Witnesser(repo *repository.GitRepo) error {
	for b := range ReadAllLocalBugs(repo) {
		if b.Err != nil {
			return b.Err
		}

		err := repo.CreateWitness(b.Bug.createTime)
		if err != nil {
			return err
		}

		err = repo.EditWitness(b.Bug.editTime)
		if err != nil {
			return err
		}
	}

	return nil
}