| 6 | } |
| 7 | |
| 8 | type setupArgs struct { |
| 9 | repair bool // Called to check and fix build environment. |
| 10 | installPorts bool // Called to install a 3rd party ports. |
| 11 | } |
| 12 | |
| 13 | func (s setupArgs) Repair() bool { |
| 14 | return s.repair |
nothing calls this directly
no outgoing calls
no test coverage detected