ExecutionResult

data class ExecutionResult(val output: String, val exitCode: Int?)(source)

Command execution result.

Constructors

Link copied to clipboard
constructor(output: String, exitCode: Int?)

Properties

Link copied to clipboard

Process exit code (0 = success), or null if the process was interrupted or timed out

Link copied to clipboard

All text printed by the command (both success and error messages)