Reintroduce check for go before including bingo Makefile

This re-adds the check for go being installed before including the
bingo variables make file to avoid repeating errors about missing a
missing go binary when running 'make node-generate' in the ci (the node
container doesn't have go installed)
This commit is contained in:
Ralf Haferkamp committed 2025-03-11 11:19:20 +01:00
1 parent e406d05cb4
commit 48edc9a5d1
45 files changed
+132

No files matched your search

+3
View File
@@ -1,7 +1,10 @@
SHELL := bash
NAME := gateway
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
include ../../.bingo/Variables.mk
endif
include ../../.make/default.mk
include ../../.make/recursion.mk
include ../../.make/go.mk