Fix makefile task names

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-05-31 12:53:57 -04:00
parent d250b97b43
commit 7bd62f5c0a
4 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
.PHONY: all
all: container
all: image
DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
@ -12,8 +12,8 @@ ifdef DIND_TASKS
USE_DOCKER=false
endif
.PHONY: container
container:
.PHONY: image
image:
ifeq ($(USE_DOCKER), true)
@$(DIR)/../../build/run-in-docker.sh make e2e-test-binary
else