(args ...string)
| 38 | } |
| 39 | |
| 40 | func withProcessArgs(args ...string) oci.SpecOpts { |
| 41 | return oci.WithProcessArgs(append([]string{"cmd", "/c"}, args...)...) |
| 42 | } |
| 43 | |
| 44 | func withCat() oci.SpecOpts { |
| 45 | return oci.WithProcessArgs("cmd", "/c", "more") |
nothing calls this directly
no test coverage detected
searching dependent graphs…