()
| 143 | } |
| 144 | |
| 145 | func execHandlers() (handlers []func(next interp.ExecHandlerFunc) interp.ExecHandlerFunc) { |
| 146 | if useGoCoreUtils { |
| 147 | handlers = append(handlers, coreutils.ExecHandler) |
| 148 | } |
| 149 | return handlers |
| 150 | } |
| 151 | |
| 152 | func openHandler(ctx context.Context, path string, flag int, perm os.FileMode) (io.ReadWriteCloser, error) { |
| 153 | if path == "/dev/null" { |
no outgoing calls
no test coverage detected
searching dependent graphs…