From ab38aba044c56ba8384aacf974a57f801eed255e Mon Sep 17 00:00:00 2001 From: Bas Couwenberg Date: Thu, 18 Jul 2019 09:49:16 +0200 Subject: [PATCH] Include time in package version to support multiple releases per day. --- packages/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/Makefile b/packages/Makefile index e0b7a9909..64fc6daaf 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -1,7 +1,7 @@ DISTRIBUTION ?= jessie GIT_COMMIT=$(shell git log -n1 --format=format:%h) -GIT_DATE=$(shell date +%Y%m%d --date="@$(shell git log -n1 --format=format:%ct)") +GIT_DATE=$(shell date +%Y%m%d%H%M%S --date="@$(shell git log -n1 --format=format:%ct)") ifeq ($(GIT_COMMIT),) echo "Error: Failed to extract commit from git log"