(script string)
| 22 | } |
| 23 | |
| 24 | func daggerShell(script string) dagger.WithContainerFunc { |
| 25 | return func(c *dagger.Container) *dagger.Container { |
| 26 | return c.WithExec([]string{"dagger", "shell"}, dagger.ContainerWithExecOpts{ |
| 27 | Stdin: script, |
| 28 | ExperimentalPrivilegedNesting: true, |
| 29 | }) |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func daggerShellNoMod(script string) dagger.WithContainerFunc { |
| 34 | return func(c *dagger.Container) *dagger.Container { |
no test coverage detected