SoftwareRecipeStepRunScriptResponse

data class SoftwareRecipeStepRunScriptResponse(val allowedExitCodes: List<Int>, val interpreter: String, val script: String)

Runs a script through an interpreter.

Constructors

Link copied to clipboard
constructor(allowedExitCodes: List<Int>, interpreter: String, script: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Return codes that indicate that the software installed or updated successfully. Behaviour defaults to 0

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.

Link copied to clipboard

The shell script to be executed.