| 44 | } |
| 45 | |
| 46 | type rootFS struct { |
| 47 | fs.StatFS |
| 48 | |
| 49 | rootPath string |
| 50 | |
| 51 | sudoWarningOnce sync.Once |
| 52 | } |
| 53 | |
| 54 | func (r *rootFS) Command(name string, arg ...string) *exec.Cmd { |
| 55 | path, _ := r.LookPath(name) |
nothing calls this directly
no outgoing calls
no test coverage detected