Fix duplicate variable declaration
VERSION_PACKAGE was declared twice, and first declaration was incorrect (earlier than REPOPATH).
This commit is contained in:
parent
e328007bc1
commit
3e4ca3dae6
1
Makefile
1
Makefile
|
|
@ -18,7 +18,6 @@ VERSION_MINOR ?= 23
|
||||||
VERSION_BUILD ?= 2
|
VERSION_BUILD ?= 2
|
||||||
|
|
||||||
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
|
||||||
VERSION_PACKAGE = $(REPOPATH/pkg/version)
|
|
||||||
|
|
||||||
SHELL := /bin/bash
|
SHELL := /bin/bash
|
||||||
GOOS ?= $(shell go env GOOS)
|
GOOS ?= $(shell go env GOOS)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue