Skip to content

Commit

Permalink
Makefile: fix scaffold version determinination
Browse files Browse the repository at this point in the history
  • Loading branch information
joelanford committed Jan 17, 2021
1 parent d8274dc commit 7ea9161
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
@@ -1,6 +1,6 @@
# GO_BUILD_ARGS should be set when running 'go build' or 'go install'.
VERSION_PKG = "$(shell go list -m)/internal/version"
export SCAFFOLD_VERSION = $(shell git describe --abbrev=0)
export SCAFFOLD_VERSION = $(shell git describe --tags --abbrev=0)
export GIT_VERSION = $(shell git describe --dirty --tags --always)
export GIT_COMMIT = $(shell git rev-parse HEAD)
BUILD_DIR = $(PWD)/bin
Expand Down

0 comments on commit 7ea9161

Please sign in to comment.