From 14c700d3be9ca2d673bae019966779fb5fd97acf Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Fri, 10 Feb 2023 12:57:10 -0800 Subject: [PATCH] build release.env against whole repo, not config folder --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 23c9727..e8e8fa7 100644 --- a/Makefile +++ b/Makefile @@ -6,10 +6,10 @@ NAME := $(shell basename $(shell git rev-parse --show-toplevel)) IMAGE := local/$(NAME):latest USER := $(shell id -u):$(shell id -g) CPUS := $(shell docker run -it debian nproc) -GIT_REF := $(shell git log -1 --format=%H config) -GIT_AUTHOR := $(shell git log -1 --format=%an config) -GIT_KEY := $(shell git log -1 --format=%GP config) -GIT_EPOCH := $(shell git log -1 --format=%at config) +GIT_REF := $(shell git log -1 --format=%H) +GIT_AUTHOR := $(shell git log -1 --format=%an) +GIT_KEY := $(shell git log -1 --format=%GP) +GIT_EPOCH := $(shell git log -1 --format=%at) GIT_DATETIME := \ $(shell git log -1 --format=%cd --date=format:'%Y-%m-%d %H:%M:%S' config) ifeq ($(strip $(shell git status --porcelain 2>/dev/null)),)