Fix Makefile.env sourcing

Makefile.env was not properly sourced, causing https certificates not to
be generated.
This commit is contained in:
Régis Behmo 2019-01-17 16:26:42 +01:00
parent c0073c441b
commit 1fbb995ec1
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
PWD = $$(pwd)
USERID ?= $$(id -u)
EDX_PLATFORM_SETTINGS ?= tutor.production
-include $(PWD)/Makefile.env
-include Makefile.env
DOCKER_COMPOSE_RUN = docker-compose run --rm
DOCKER_COMPOSE_RUN_OPENEDX = $(DOCKER_COMPOSE_RUN) -e SETTINGS=$(EDX_PLATFORM_SETTINGS) \