()
| 96 | } |
| 97 | |
| 98 | func (c *Config) EnsureConfig() error { |
| 99 | adminRepo, err := c.openAdminRepo() |
| 100 | if err != nil { |
| 101 | return err |
| 102 | } |
| 103 | |
| 104 | return c.ensureConfig(adminRepo) |
| 105 | } |
| 106 | |
| 107 | func (c *Config) ensureConfig(adminRepo *git.Repository) error { |
| 108 | // Ensure config |
no test coverage detected