Software Recipe Step Run Script Args
data class SoftwareRecipeStepRunScriptArgs(val allowedExitCodes: Output<List<Int>>? = null, val interpreter: Output<SoftwareRecipeStepRunScriptInterpreter>? = null, val script: Output<String>) : ConvertibleToJava<SoftwareRecipeStepRunScriptArgs>
Runs a script through an interpreter.
Constructors
Link copied to clipboard
fun SoftwareRecipeStepRunScriptArgs(allowedExitCodes: Output<List<Int>>? = null, interpreter: Output<SoftwareRecipeStepRunScriptInterpreter>? = null, script: Output<String>)
Functions
Properties
Link copied to clipboard
The script interpreter to use to run the script. If no interpreter is specified the script is executed directly, which likely only succeed for scripts with shebang lines.