| 17 | ) |
| 18 | |
| 19 | type configureCmd struct { |
| 20 | celer *configs.Celer |
| 21 | platform string |
| 22 | project string |
| 23 | buildType string |
| 24 | downloads string |
| 25 | jobs int |
| 26 | offline bool |
| 27 | verbose bool |
| 28 | |
| 29 | // Support port url and ref. |
| 30 | port string |
| 31 | portUrl string |
| 32 | portRef string |
| 33 | |
| 34 | pkgCacheConfig configs.PkgCacheConfig |
| 35 | proxy configs.Proxy |
| 36 | ccache configs.CCache |
| 37 | } |
| 38 | |
| 39 | var flagGroup = map[string]string{ |
| 40 | "platform": "platform", |
nothing calls this directly
no outgoing calls
no test coverage detected