From 437e4311e1459210ba28fa209a43a6eadfd2c359 Mon Sep 17 00:00:00 2001
From: Patrick Ohly <patrick.ohly@intel.com>
Date: Thu, 18 Mar 2021 10:17:45 +0100
Subject: [PATCH] verify-go-version.sh: fix check after removal of travis.yml

Two problems:
- sourcing prow.sh prints info messages about settings which should
  better be suppressed
- the expected value was hidden by the incorrect make-style quoting
  of CSI_PROW_GO_VERSION_BUILD
---
 verify-go-version.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/verify-go-version.sh b/verify-go-version.sh
index d130126a1..c235e74fe 100755
--- a/verify-go-version.sh
+++ b/verify-go-version.sh
@@ -31,7 +31,7 @@ version=$("$GO" version) || die "determining version of $GO failed"
 majorminor=$(echo "$version" | sed -e 's/.*go\([0-9]*\)\.\([0-9]*\).*/\1.\2/')
 # SC1091: Not following: release-tools/prow.sh was not specified as input (see shellcheck -x).
 # shellcheck disable=SC1091
-expected=$(. release-tools/prow.sh && echo "$$CSI_PROW_GO_VERSION_BUILD")
+expected=$(. release-tools/prow.sh >/dev/null && echo "$CSI_PROW_GO_VERSION_BUILD")
 
 if [ "$majorminor" != "$expected" ]; then
     cat >&2 <<EOF