Skip to content

Commit

Permalink
update goversion check
Browse files Browse the repository at this point in the history
  • Loading branch information
forhadulislam committed Nov 12, 2021
1 parent d6af876 commit 5cf2ef4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PREFERRED_GO_VERSION?=1.17.0
ACTUAL_GO_VERSION := $(shell go version | cut -d' ' -f3)
REQ_GO_MINOR_VERSION := $(shell echo ${PREFERRED_GO_VERSION} | cut -d'.' -f2)
SYSTEM_GO_MINOR_VERSION := $(shell echo ${ACTUAL_GO_VERSION} | cut -d'.' -f2)
ACTUAL_GO_VERSION := $(shell go version | cut -d ' ' -f3)
REQ_GO_MINOR_VERSION := $(shell echo ${PREFERRED_GO_VERSION} | cut -d '.' -f2)
SYSTEM_GO_MINOR_VERSION := $(shell echo ${ACTUAL_GO_VERSION} | cut -d '.' -f2)


SERVICE_ROOT = "./services/"
Expand Down

0 comments on commit 5cf2ef4

Please sign in to comment.