CommandExecutionError

struct CommandExecutionError : Error

The error type that are used if command not executed correctly.

  • The termination status of the command that was run.

    Declaration

    Swift

    public let terminationStatus: Int
  • The error message as returned through stderr.

    Declaration

    Swift

    public let stderr: String
  • The output of the command as returned through stdout.

    Declaration

    Swift

    public var stdout: String