From 3e4ca3dae642391c4f34409800223d3ee563f51c Mon Sep 17 00:00:00 2001 From: Boris Klimenko <2@borisklimenko.ru> Date: Mon, 7 Oct 2024 16:41:09 +0200 Subject: [PATCH] Fix duplicate variable declaration VERSION_PACKAGE was declared twice, and first declaration was incorrect (earlier than REPOPATH). --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index eb1b6c131..4fede1b6c 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,6 @@ VERSION_MINOR ?= 23 VERSION_BUILD ?= 2 VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD) -VERSION_PACKAGE = $(REPOPATH/pkg/version) SHELL := /bin/bash GOOS ?= $(shell go env GOOS)