Skip to content

Commit

Permalink
fix(build): invalid version number displayed (#229) (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
hbollon committed Mar 5, 2022
1 parent e7d2923 commit 1fc682a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -2,7 +2,7 @@ NAME := terraboard
FILES := $(wildcard */*.go)
TEST_FILES := $(shell go list ./... | grep -v /internal/)
TEST_FILES_COMMA_SEPARATED := $(shell go list ./... | grep -v /internal/ | awk '{print}' ORS=',')
VERSION := $(shell git describe --always)
VERSION := $(shell git describe --always --tags)
.DEFAULT_GOAL := help

export GO111MODULE=on
Expand Down

0 comments on commit 1fc682a

Please sign in to comment.