From c65584072bf64f2a1c2d09fc43b1e3b395ab46cb Mon Sep 17 00:00:00 2001 From: bakhtin Date: Tue, 7 Oct 2025 12:25:52 +0100 Subject: [PATCH] Allow overriding the build version in Makefile Signed-off-by: bakhtin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2b4d4e..bf8eb2a 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # and Reth: https://github.com/paradigmxyz/reth/blob/main/Makefile .DEFAULT_GOAL := help -VERSION := $(shell git describe --tags --always --dirty="-dev") +VERSION ?= $(shell git describe --tags --always --dirty="-dev") ##@ Help