From c572cec2532e8bb5fc142104b14886c4f25d6be9 Mon Sep 17 00:00:00 2001 From: Patrick Decat Date: Wed, 13 Jan 2021 19:02:44 +0100 Subject: [PATCH] Fix Makefile to ignore gpg signatures in commits --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fbf3c3021..9bd90f2b5 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ default_target: amd64_frigate -COMMIT_HASH := $(shell git log -1 --pretty=format:"%h") +COMMIT_HASH := $(shell git log -1 --pretty=format:"%h"|tail -1) version: echo "VERSION='0.8.0-$(COMMIT_HASH)'" > frigate/version.py