Skip to content

Commit

Permalink
Update COMPOSE_PROJECT_NAME value generation (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
duboiss authored Oct 16, 2023
1 parent 469fada commit 90b84a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SHELL := /bin/bash
PHP_SERVICE := docker compose exec -u www-data:www-data php bash -c

# Define a dynamic project name that will be prepended to each service name
export COMPOSE_PROJECT_NAME := magento2_$(shell echo $${PWD\#\#*/} | tr '[:upper:]' '[:lower:]')
export COMPOSE_PROJECT_NAME := magento2_$(shell echo $$(basename $$(pwd)) | tr '[:upper:]' '[:lower:]')

# Extract environment variables needed by the environment
export PROJECT_LOCATION := $(shell echo ${MAKEFILE_DIRECTORY})
Expand Down

0 comments on commit 90b84a7

Please sign in to comment.