| 46 | } |
| 47 | |
| 48 | type Installation struct { |
| 49 | InstallLocation InstallLocation `yaml:"location"` |
| 50 | InstallFlavours InstallFlavours `yaml:"flavours"` |
| 51 | To string `yaml:"to"` |
| 52 | OneFlavour bool `yaml:"one_flavour"` |
| 53 | Modes []string `yaml:"modes"` |
| 54 | Comments string `yaml:"comments"` |
| 55 | Hooks Hooks `yaml:"hooks"` |
| 56 | } |
| 57 | |
| 58 | type Hooks struct { |
| 59 | Pre HookOptions `yaml:"pre"` |
nothing calls this directly
no outgoing calls
no test coverage detected