Skip to content

Commit

Permalink
fix version detection for release
Browse files Browse the repository at this point in the history
  • Loading branch information
itaysk committed Nov 26, 2020
1 parent dab487d commit 8d0ac30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CMD_GITHUB ?= gh
ARCH ?= $(shell uname -m)
KERN_RELEASE ?= $(shell uname -r)
KERN_SRC ?= /lib/modules/$(KERN_RELEASE)/build
VERSION := $(if $(RELEASE_TAG), $(RELEASE_TAG), $(shell $(CMD_GIT) describe --tags))
VERSION := $(if $(RELEASE_TAG),$(RELEASE_TAG),$(shell $(CMD_GIT) describe --tags))
# inputs and outputs:
OUT_DIR ?= dist
GO_SRC := $(shell find . -type f -name '*.go')
Expand Down

0 comments on commit 8d0ac30

Please sign in to comment.