Merge pull request #81 from porridge/no-push

Do not push containers to remote repo as part of test-e2e.
This commit is contained in:
Prashanth B 2016-12-22 09:50:34 -08:00 committed by GitHub
commit 02a0e56ffb

View file

@ -214,7 +214,7 @@ func run(deploy deployer) error {
func Build() error {
// The build-release script needs stdin to ask the user whether
// it's OK to download the docker image.
cmd := exec.Command("make", "docker-build", "docker-push")
cmd := exec.Command("make", "docker-build")
cmd.Stdin = os.Stdin
if err := finishRunning("build-release", cmd); err != nil {
return fmt.Errorf("error building: %v", err)