Skip to content

Commit

Permalink
fix(makefile): go version parse cmd (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
vchong authored Aug 1, 2023
1 parent 87d084e commit af92552
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,5 +1,5 @@
COMMIT := $(shell git log -1 --format='%H')
GO_VERSION := $(shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f1 -f2)
GO_VERSION := $(shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f1,2)
VERSION := v1.3.0 # $(shell echo $(shell git describe --tags) | sed 's/^v//')

TEAM_ALLOCATION := 165000000000000
Expand Down

0 comments on commit af92552

Please sign in to comment.