summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-10 17:15:23 -0600
committermo khan <mo@mokhan.ca>2025-07-10 17:15:23 -0600
commitd13b79501e113a908cc3a4d38be1837869f717ea (patch)
treec6b18955d3900a0d6e0131501e83b948447cd541 /Makefile
parent1f2c4a659075a9383b804f30ece813ace46e3237 (diff)
chore: define IMAGE_TAG after PROJECT_NAME
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index deaff94c..1c1bff8d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
AUTHZD_BIN := bin/authzd
CLI_BIN := bin/cli
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD | sed 's/\//_/g')
-IMAGE_TAG := $(PROJECT_NAME):$(GIT_BRANCH)
PROJECT_NAME := $(shell basename $(shell pwd))
+IMAGE_TAG := $(PROJECT_NAME):$(GIT_BRANCH)
.PHONY: build check test run clean fmt lint doc vendor
.PHONY: build-image run-image