From 66f5564b579922b3be4f8a7517832201cf25b5d2 Mon Sep 17 00:00:00 2001 From: Jaz Date: Mon, 9 Sep 2024 20:51:34 -0700 Subject: [PATCH] Fix version in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 62ec4d1..b864b99 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ GO_CMD_W_CGO = CGO_ENABLED=1 GOOS=linux go GO_CMD = CGO_ENABLED=0 GOOS=linux go -JETSTREAM_VERSION = $(shell git rev-parse HEAD) +JETSTREAM_VERSION = sha-$(shell git rev-parse HEAD) # Build Jetstream .PHONY: build