We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 05a1d7d + b90878f commit de1bd28Copy full SHA for de1bd28
integration/runner/runner.go
@@ -75,7 +75,7 @@ func getAttributes(ipAddress, portStr string) (*cadvisorApi.Attributes, error) {
75
func RunCommand(cmd string, args ...string) error {
76
output, err := exec.Command(cmd, args...).CombinedOutput()
77
if err != nil {
78
- return fmt.Errorf("command %q %q failed with error: %v and output: %q", cmd, args, err, output)
+ return fmt.Errorf("command %q %q failed with error: %v and output: %v", cmd, args, err, output)
79
}
80
81
return nil
0 commit comments