Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Allow Go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Jan 10, 2024
1 parent 20a6fad commit 1e7b65f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ ifeq ($(GO_MINOR_VERSION),19)
@echo "Go version: $(GO_MAJOR_VERSION).$(GO_MINOR_VERSION). Ok."
else ifeq ($(GO_MINOR_VERSION),20)
@echo "Go version: $(GO_MAJOR_VERSION).$(GO_MINOR_VERSION). Ok."
else ifeq ($(GO_MINOR_VERSION),21)
@echo "Go version: $(GO_MAJOR_VERSION).$(GO_MINOR_VERSION). Ok."
else
@echo "ERROR: Go version 1.19 or 1.20 is required for this version of Nois"
@echo "ERROR: Go version 1.19, 1.20 or 1.21 is required for this version of Nois"
exit 1
endif

Expand Down

0 comments on commit 1e7b65f

Please sign in to comment.