Interface CommandResult

CommandResult contains uninterpreted information about a completed command execution.

Hierarchy

  • CommandResult

Properties

args: string[]

The arguments passed to the program.

err: string

The final stderr.

exeName: string

The name of the program used to execute the command.

exitCode: number

The exit code returned by the program. Zero means no errors occurred.

out: string

The final stdout.

repositoryPath: string

The path of the repository targeted by the command.

Methods

  • Obtains a string representation of the CommandResult.

    Returns string

    A sentence describing the CommandResult. All fields of the interface are included in the message.