From 3d6a11bf6640bd0ea47d38037a07dcbeab3b3514 Mon Sep 17 00:00:00 2001 From: Vincent Boutour Date: Fri, 15 Dec 2023 22:10:36 +0100 Subject: [PATCH] fix: Fixing extra short args Signed-off-by: Vincent Boutour --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1f98c4c5..c04946fd 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ version: ## version-full: Output last commit sha .PHONY: version-full version-full: - @printf "$(shell git rev-parse --short HEAD)" + @printf "$(shell git rev-parse HEAD)" ## version-date: Output last commit date .PHONY: version-date