From 3ac4e29d4e4f699f280ce752642fe6fc084295a9 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Tue, 6 Oct 2020 23:15:22 -0500 Subject: [PATCH] Fix version in Makefile Signed-off-by: jolheiser --- 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: