Merge pull request #9582 from cncal/main

build: fix the confusing build message if yq doesn't exist in GOPATH/bin
This commit is contained in:
GabyCT 2024-05-07 09:34:27 -06:00 committed by GitHub
commit a564422b7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,7 @@ endif
ifeq (,$(not_check_version))
have_yq=$(shell if [ -x "$(GOPATH)/bin/yq" ]; then echo "true"; else echo ""; fi)
ifeq (,$(have_yq))
$(info INFO: yq was not found, installing it)
$(info INFO: yq was not found in GOPATH/bin, installing it)
install_yq=$(shell ../../ci/install_yq.sh)
endif
ifneq (,$(install_yq))