git-bug/misc/random_bugs/main.go
2019-03-01 22:40:28 +01:00

29 lines
507 B
Go

// +build ignore
package main
import (
"os"
rb "github.com/MichaelMure/git-bug/misc/random_bugs"
"github.com/MichaelMure/git-bug/repository"
)
// This program will randomly generate a collection of bugs in the repository
// of the current path
func main() {
dir, err := os.Getwd()
if err != nil {
panic(err)
}
repo, err := repository.NewGitRepo(dir, func(repo repository.ClockedRepo) error {
return nil
})
if err != nil {
panic(err)
}
rb.CommitRandomBugs(repo, rb.DefaultOptions())
}