Fix version in Makefile

Signed-off-by: jolheiser <john.olheiser@gmail.com>
pull/4/head
jolheiser 2020-10-06 23:15:22 -05:00
parent 0577fb4dbc
commit 3ac4e29d4e
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
1 changed files with 1 additions and 1 deletions

View File

@ -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: