Skip to content

Commit

Permalink
Makefile: Fix go version parse cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
vchong committed Aug 1, 2023
1 parent 87d084e commit 9e9e7eb
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 9e9e7eb

Please sign in to comment.