(err error)
| 76 | } |
| 77 | |
| 78 | func isExecErrNotFound(err error) bool { |
| 79 | eerr, ok := err.(*exec.Error) |
| 80 | if !ok { |
| 81 | return false |
| 82 | } |
| 83 | return eerr.Err == exec.ErrNotFound |
| 84 | } |
| 85 | |
| 86 | // these are the standard 4 build-args supported by `docker build` |
| 87 | // plus the all_proxy/ALL_PROXY which is a socks standard one |