From d0d66c2d57be4ed0bb8c43fe2f2120d75d9ce2d3 Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Mon, 13 Feb 2023 12:36:17 -0800 Subject: [PATCH] ensure NAME is always lowercase --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0f31083..2696825 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ DEFAULT_GOAL := $(or $(DEFAULT_GOAL),toolchain) ARCH := $(or $(ARCH),x86_64) TARGET := $(or $(TARGET),$(ARCH)) PLATFORM := $(or $(PLATFORM),linux) -NAME := $(shell basename $(shell git rev-parse --show-toplevel)) +NAME := $(shell basename $(shell git rev-parse --show-toplevel | tr A-Z a-z )) IMAGE := local/$(NAME):latest USER := $(shell id -u):$(shell id -g) CPUS := $(shell docker run -it debian nproc)