Merge pull request #15045 from cpuguy83/fix_dockercmdwitherror

Don't pass check.C to dockerCmdWithError
This commit is contained in:
Doug Davis
2015-07-27 16:04:16 -04:00
28 changed files with 175 additions and 175 deletions
+1 -1
View File
@@ -581,7 +581,7 @@ func pullImageIfNotExist(image string) (err error) {
return
}
func dockerCmdWithError(c *check.C, args ...string) (string, int, error) {
func dockerCmdWithError(args ...string) (string, int, error) {
return runCommandWithOutput(exec.Command(dockerBinary, args...))
}