Skip to content

Commit

Permalink
Make VERSION non overridable from environment
Browse files Browse the repository at this point in the history
  • Loading branch information
bloznelis committed May 23, 2022
1 parent ed2db16 commit 16c2d4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ GO_FLAGS ?=
NAME := typioca
OUTPUT_BIN ?= execs/$(NAME)$(ARCH)
PACKAGE := github.com/bloznelis/$(NAME)
GIT_REV ?= $(shell git rev-parse --short HEAD)
VERSION ?= $(shell git describe --abbrev=0 --tags)
GIT_REV = $(shell git rev-parse --short HEAD)
VERSION = $(shell git describe --abbrev=0 --tags)

default: help

Expand Down

0 comments on commit 16c2d4a

Please sign in to comment.