Skip to content

Commit 0f5d595

Browse files
committed
Fixed case sensititivy for project directory naming
1 parent df8f600 commit 0f5d595

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
UNAME := $(shell uname)
33
DOCKER_COMPOSE_FILE := docker-compose.yml
44

5-
export PROJECT := $(shell basename $(CURDIR))
6-
export IMAGE_MAINTAINER := $(shell grep '^IMAGE_MAINTAINER' ./environment | sed 's/^.*=//g')
5+
export PROJECT := $(shell basename $(CURDIR) | tr '[:upper:]' '[:lower:]')
6+
export IMAGE_MAINTAINER := $(shell grep '^IMAGE_MAINTAINER' ./environment | sed 's/^.*=//g' | tr '[:upper:]' '[:lower:]')
77
LABLE_BASE := ${IMAGE_MAINTAINER}/${PROJECT}
88

99
ifeq ($(UNAME), Linux)

0 commit comments

Comments
 (0)