From a4cc44723fc8cb3586952231cf8b90a6abbcd4ec Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Wed, 7 Oct 2020 04:16:27 +0000 Subject: [PATCH] Fix version in Makefile (#4) Fix version in Makefile Signed-off-by: jolheiser Co-authored-by: jolheiser Reviewed-on: https://gitea.com/jolheiser/gpm/pulls/4 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7472947..64cc957 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ VERSION ?= $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//') .PHONY: build build: - $(GO) build -ldflags '-s -w -X "go.jolheiser.com/gpm/modules/config.Version=$(VERSION)"' + $(GO) build -ldflags '-s -w -X "go.jolheiser.com/gpm/config.Version=$(VERSION)"' .PHONY: fmt fmt: