Skip to content

Commit

Permalink
fix Makefile; it needs TABs
Browse files Browse the repository at this point in the history
  • Loading branch information
ballPointPenguin committed Apr 7, 2023
1 parent 14ae6d4 commit ba0e8f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ PROD: ## Run in prod mode (e.g. `make PROD start`, etc.)
$(eval COMPOSE_FILE_ARGS = -f docker-compose.yml)

TEST: ## Run in test mode (e.g. `make TEST start`, etc.)
$(eval ENV_FILE = test.env)
$(eval TAG = $(shell grep -e ^TAG ${ENV_FILE} | awk -F'[=]' '{gsub(/ /,"");print $$2}'))
$(eval COMPOSE_FILE_ARGS = -f docker-compose.yml -f docker-compose.test.yml)
$(eval ENV_FILE = test.env)
$(eval TAG = $(shell grep -e ^TAG ${ENV_FILE} | awk -F'[=]' '{gsub(/ /,"");print $$2}'))
$(eval COMPOSE_FILE_ARGS = -f docker-compose.yml -f docker-compose.test.yml)

echo_vars:
@echo ENV_FILE=${ENV_FILE}
Expand Down

0 comments on commit ba0e8f9

Please sign in to comment.