From 40c19a3cc7e6dae3628d81fd7f88e14d47615d2e Mon Sep 17 00:00:00 2001 From: Matthieu Huguet Date: Mon, 30 Nov 2020 10:35:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(project)=20fix=20bootstrap=20targe?= =?UTF-8?q?t=20in=20the=20Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On a fresh environment, the `make bootstrap` command fails with the following error : `Couldn't find env file`. The `.env` file must be generated before building the docker image. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8c654ec..0045ca1 100644 --- a/Makefile +++ b/Makefile @@ -61,8 +61,8 @@ list-meetings: ## List meetings running on the BBB server bootstrap: ## Prepare Docker images for the project bootstrap: \ - build \ - .env + .env \ + build .PHONY: bootstrap # -- Build tools