fix(Makefile): Prevent makefile from defaulting to using containers if use_containers=false

Signed-off-by: kaustav haldar <hi@kaustav.me>
This commit is contained in:
kaustav haldar 2015-12-21 17:19:39 -08:00
parent 01873fe22d
commit 302044858b
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
ifneq (,$(findstring test-integration,$(MAKECMDGOALS)))
include Makefile.inc
include mk/main.mk
else ifeq ($(USE_CONTAINER),)
else ifneq ($(USE_CONTAINER), true)
include Makefile.inc
include mk/main.mk
else