installers
A toolchain to test Dagger installers
Installation
dagger install github.com/dagger/dagger/toolchains/installers@f07df60111db19639caa0f4a3c27cc6e05e69c08Entrypoint
Return Type
Installers Example
dagger -m github.com/dagger/dagger/toolchains/installers@f07df60111db19639caa0f4a3c27cc6e05e69c08 call \
func (m *MyModule) Example() *dagger.Installers {
return dag.
Installers()
}@function
def example() -> dagger.Installers:
return (
dag.installers()
)@func()
example(): Installers {
return dag
.installers()
}Types
Installers 🔗
A toolchain to test Dagger installers
testBashScript() 🔗
Test install bash script
Return Type
Void !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| installShellScript | File | - | No description provided |
Example
dagger -m github.com/dagger/dagger/toolchains/installers@f07df60111db19639caa0f4a3c27cc6e05e69c08 call \
test-bash-scriptfunc (m *MyModule) Example(ctx context.Context) {
return dag.
Installers().
TestBashScript(ctx)
}@function
async def example() -> None:
return await (
dag.installers()
.test_bash_script()
)@func()
async example(): Promise<void> {
return dag
.installers()
.testBashScript()
}