MCPcopy Index your code
hub / github.com/coder/envbox / CombinedOutput

Method CombinedOutput

xunix/exec.go:110–113  ·  view source on GitHub ↗

CombinedOutput is part of the Cmd interface.

()

Source from the content-addressed store, hash-verified

108
109// CombinedOutput is part of the Cmd interface.
110func (cmd *cmdWrapper) CombinedOutput() ([]byte, error) {
111 out, err := (*osexec.Cmd)(cmd).CombinedOutput()
112 return out, handleError(err)
113}
114
115func (cmd *cmdWrapper) Output() ([]byte, error) {
116 out, err := (*osexec.Cmd)(cmd).Output()

Callers 5

dockerRuntimesFunction · 0.80
startEnvboxCmdFunction · 0.80
execContainerCmdFunction · 0.80
buildEnvboxFunction · 0.80
dockerCmdFunction · 0.80

Calls 1

handleErrorFunction · 0.85

Tested by 4

dockerRuntimesFunction · 0.64
startEnvboxCmdFunction · 0.64
execContainerCmdFunction · 0.64
buildEnvboxFunction · 0.64