We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd19d39 commit 2063f15Copy full SHA for 2063f15
build.mk
@@ -27,7 +27,7 @@ clean:
27
.PHONY:check-go
28
check-go:
29
$(call check_tool,$(GO),'GO')
30
- @if [ "$$(printf '%s\n' "$$($(GO) version)" $(MIN_GO_VERSION) | sort -V | head -n1)" != "1.21" ]; then \
+ @if [ "$$(printf '%s\n' "$$($(GO) version)" $(MIN_GO_VERSION) | sort -V | head -n1)" != $(MIN_GO_VERSION) ]; then \
31
echo "Error: Go version should be $(MIN_GO_VERSION) or above"; \
32
exit 1; \
33
fi
0 commit comments