runner

package
v2.1.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 11, 2020 License: Apache-2.0 Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CommandRunner

type CommandRunner struct {
}

CommandRunner is an empty struct to hang the Run method on.

func (CommandRunner) Run

func (r CommandRunner) Run(bin string, dir string, args ...string) error

Run makes CommandRunner satisfy the Runner interface. This implementation delegates to exec.Command.

func (CommandRunner) RunWithOutput

func (r CommandRunner) RunWithOutput(bin string, dir string, args ...string) ([]byte, error)

RunWithOutput makes CommandRunner satisfy the Runner interface. This implementation delegates to exec.Command.

type Runner

type Runner interface {
	// Run configures a command and executes it, sending output to stdout and stderr.
	Run(bin string, dir string, args ...string) error

	// RunWithOutput configures a command and executes it, collecting output and returning it.
	RunWithOutput(bin string, dir string, args ...string) ([]byte, error)
}

Runner defines methods for executing commands.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL