From fb3e9d3184d2315458e0f2a63af0dbb0421ea9dc Mon Sep 17 00:00:00 2001 From: Kevin Schoon Date: Wed, 28 Jul 2021 21:36:33 -0400 Subject: [PATCH] update Makefile --- Makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 66c420b..f90b2d6 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,10 @@ -DOCKER_CMD=docker run --rm -ti -w /build/pomo -v $$PWD:/build/pomo -DOCKER_IMAGE=pomo-build - VERSION ?= $(shell git describe --tags 2>/dev/null) ifeq "$(VERSION)" "" VERSION := UNKNOWN endif LDFLAGS=\ - -X github.com/kevinschoon/pomo/pkg/internal/version.Version=$(VERSION) + -X github.com/kevinschoon/pomo/pkg/internal.Version=$(VERSION) .PHONY: \ test \ @@ -23,9 +20,6 @@ bin/pomo: test cd cmd/pomo && \ go build -ldflags '${LDFLAGS}' -o ../../$@ -#bindata.go: tomato-icon.png -# go-bindata -pkg main -o $@ $^ - test: go test ./... go vet ./...