Software Recipe Step Run Script Response
data class SoftwareRecipeStepRunScriptResponse(val allowedExitCodes: List<Int>, val interpreter: String, val script: String)
Runs a script through an interpreter.
Constructors
Link copied to clipboard
fun SoftwareRecipeStepRunScriptResponse(allowedExitCodes: List<Int>, interpreter: String, script: String)
Types
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.