boolPtr returns a pointer to the given bool value, used for optional *bool fields.
(b bool)
| 42 | |
| 43 | // boolPtr returns a pointer to the given bool value, used for optional *bool fields. |
| 44 | func boolPtr(b bool) *bool { return new(b) } |
| 45 | |
| 46 | // logAndValidateBinaryPath determines the binary path, logs it, and validates it exists. |
| 47 | // Returns the detected binary path and an error if the path cannot be determined or if the file doesn't exist. |
no outgoing calls