| 88 | ) |
| 89 | |
| 90 | type BuildConfigEnv struct { |
| 91 | Name string `toml:"name"` |
| 92 | Value string `toml:"value"` |
| 93 | Suffix Suffix `toml:"suffix,omitempty"` |
| 94 | Delim string `toml:"delim,omitempty"` |
| 95 | ExecEnv []string `toml:"exec-env,omitempty"` |
| 96 | } |
| 97 | |
| 98 | // ReadConfig reads a builder configuration from the file path provided and returns the |
| 99 | // configuration along with any warnings encountered while parsing |
nothing calls this directly
no outgoing calls
no test coverage detected